com.volcengine.rocketmq.model.ConfigForGetInspectConfigOutput Maven / Gradle / Ivy
/*
* rocketmq
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: common-version
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.volcengine.rocketmq.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.volcengine.rocketmq.model.ConfigurableForGetInspectConfigOutput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* ConfigForGetInspectConfigOutput
*/
public class ConfigForGetInspectConfigOutput {
@SerializedName("Configurable")
private ConfigurableForGetInspectConfigOutput configurable = null;
@SerializedName("Describe")
private String describe = null;
@SerializedName("InspectName")
private String inspectName = null;
@SerializedName("StartInspectTimeStamp")
private String startInspectTimeStamp = null;
@SerializedName("Type")
private String type = null;
public ConfigForGetInspectConfigOutput configurable(ConfigurableForGetInspectConfigOutput configurable) {
this.configurable = configurable;
return this;
}
/**
* Get configurable
* @return configurable
**/
@Valid
@Schema(description = "")
public ConfigurableForGetInspectConfigOutput getConfigurable() {
return configurable;
}
public void setConfigurable(ConfigurableForGetInspectConfigOutput configurable) {
this.configurable = configurable;
}
public ConfigForGetInspectConfigOutput describe(String describe) {
this.describe = describe;
return this;
}
/**
* Get describe
* @return describe
**/
@Schema(description = "")
public String getDescribe() {
return describe;
}
public void setDescribe(String describe) {
this.describe = describe;
}
public ConfigForGetInspectConfigOutput inspectName(String inspectName) {
this.inspectName = inspectName;
return this;
}
/**
* Get inspectName
* @return inspectName
**/
@Schema(description = "")
public String getInspectName() {
return inspectName;
}
public void setInspectName(String inspectName) {
this.inspectName = inspectName;
}
public ConfigForGetInspectConfigOutput startInspectTimeStamp(String startInspectTimeStamp) {
this.startInspectTimeStamp = startInspectTimeStamp;
return this;
}
/**
* Get startInspectTimeStamp
* @return startInspectTimeStamp
**/
@Schema(description = "")
public String getStartInspectTimeStamp() {
return startInspectTimeStamp;
}
public void setStartInspectTimeStamp(String startInspectTimeStamp) {
this.startInspectTimeStamp = startInspectTimeStamp;
}
public ConfigForGetInspectConfigOutput type(String type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@Schema(description = "")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ConfigForGetInspectConfigOutput configForGetInspectConfigOutput = (ConfigForGetInspectConfigOutput) o;
return Objects.equals(this.configurable, configForGetInspectConfigOutput.configurable) &&
Objects.equals(this.describe, configForGetInspectConfigOutput.describe) &&
Objects.equals(this.inspectName, configForGetInspectConfigOutput.inspectName) &&
Objects.equals(this.startInspectTimeStamp, configForGetInspectConfigOutput.startInspectTimeStamp) &&
Objects.equals(this.type, configForGetInspectConfigOutput.type);
}
@Override
public int hashCode() {
return Objects.hash(configurable, describe, inspectName, startInspectTimeStamp, type);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ConfigForGetInspectConfigOutput {\n");
sb.append(" configurable: ").append(toIndentedString(configurable)).append("\n");
sb.append(" describe: ").append(toIndentedString(describe)).append("\n");
sb.append(" inspectName: ").append(toIndentedString(inspectName)).append("\n");
sb.append(" startInspectTimeStamp: ").append(toIndentedString(startInspectTimeStamp)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy