com.volcengine.waf.model.CreateCustomBotConfigRequest Maven / Gradle / Ivy
The newest version!
/*
* waf
* 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.waf.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.waf.model.AccurateForCreateCustomBotConfigInput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* CreateCustomBotConfigRequest
*/
public class CreateCustomBotConfigRequest {
@SerializedName("Accurate")
private AccurateForCreateCustomBotConfigInput accurate = null;
@SerializedName("Action")
private String action = null;
@SerializedName("BotType")
private String botType = null;
@SerializedName("Description")
private String description = null;
@SerializedName("Enable")
private Integer enable = null;
@SerializedName("Host")
private String host = null;
public CreateCustomBotConfigRequest accurate(AccurateForCreateCustomBotConfigInput accurate) {
this.accurate = accurate;
return this;
}
/**
* Get accurate
* @return accurate
**/
@Valid
@Schema(description = "")
public AccurateForCreateCustomBotConfigInput getAccurate() {
return accurate;
}
public void setAccurate(AccurateForCreateCustomBotConfigInput accurate) {
this.accurate = accurate;
}
public CreateCustomBotConfigRequest action(String action) {
this.action = action;
return this;
}
/**
* Get action
* @return action
**/
@NotNull
@Schema(required = true, description = "")
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public CreateCustomBotConfigRequest botType(String botType) {
this.botType = botType;
return this;
}
/**
* Get botType
* @return botType
**/
@NotNull
@Schema(required = true, description = "")
public String getBotType() {
return botType;
}
public void setBotType(String botType) {
this.botType = botType;
}
public CreateCustomBotConfigRequest description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
**/
@Schema(description = "")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public CreateCustomBotConfigRequest enable(Integer enable) {
this.enable = enable;
return this;
}
/**
* Get enable
* @return enable
**/
@NotNull
@Schema(required = true, description = "")
public Integer getEnable() {
return enable;
}
public void setEnable(Integer enable) {
this.enable = enable;
}
public CreateCustomBotConfigRequest host(String host) {
this.host = host;
return this;
}
/**
* Get host
* @return host
**/
@NotNull
@Schema(required = true, description = "")
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreateCustomBotConfigRequest createCustomBotConfigRequest = (CreateCustomBotConfigRequest) o;
return Objects.equals(this.accurate, createCustomBotConfigRequest.accurate) &&
Objects.equals(this.action, createCustomBotConfigRequest.action) &&
Objects.equals(this.botType, createCustomBotConfigRequest.botType) &&
Objects.equals(this.description, createCustomBotConfigRequest.description) &&
Objects.equals(this.enable, createCustomBotConfigRequest.enable) &&
Objects.equals(this.host, createCustomBotConfigRequest.host);
}
@Override
public int hashCode() {
return Objects.hash(accurate, action, botType, description, enable, host);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateCustomBotConfigRequest {\n");
sb.append(" accurate: ").append(toIndentedString(accurate)).append("\n");
sb.append(" action: ").append(toIndentedString(action)).append("\n");
sb.append(" botType: ").append(toIndentedString(botType)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" enable: ").append(toIndentedString(enable)).append("\n");
sb.append(" host: ").append(toIndentedString(host)).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 ");
}
}