com.volcengine.waf.model.UpdateSystemBotConfigRequest Maven / Gradle / Ivy
/*
* 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 io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* UpdateSystemBotConfigRequest
*/
public class UpdateSystemBotConfigRequest {
@SerializedName("Action")
private String action = null;
@SerializedName("BotType")
private String botType = null;
@SerializedName("Enable")
private Integer enable = null;
@SerializedName("Host")
private String host = null;
@SerializedName("ProjectName")
private String projectName = null;
public UpdateSystemBotConfigRequest action(String action) {
this.action = action;
return this;
}
/**
* Get action
* @return action
**/
@Schema(description = "")
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public UpdateSystemBotConfigRequest 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 UpdateSystemBotConfigRequest enable(Integer enable) {
this.enable = enable;
return this;
}
/**
* Get enable
* @return enable
**/
@Schema(description = "")
public Integer getEnable() {
return enable;
}
public void setEnable(Integer enable) {
this.enable = enable;
}
public UpdateSystemBotConfigRequest 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;
}
public UpdateSystemBotConfigRequest projectName(String projectName) {
this.projectName = projectName;
return this;
}
/**
* Get projectName
* @return projectName
**/
@Schema(description = "")
public String getProjectName() {
return projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UpdateSystemBotConfigRequest updateSystemBotConfigRequest = (UpdateSystemBotConfigRequest) o;
return Objects.equals(this.action, updateSystemBotConfigRequest.action) &&
Objects.equals(this.botType, updateSystemBotConfigRequest.botType) &&
Objects.equals(this.enable, updateSystemBotConfigRequest.enable) &&
Objects.equals(this.host, updateSystemBotConfigRequest.host) &&
Objects.equals(this.projectName, updateSystemBotConfigRequest.projectName);
}
@Override
public int hashCode() {
return Objects.hash(action, botType, enable, host, projectName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdateSystemBotConfigRequest {\n");
sb.append(" action: ").append(toIndentedString(action)).append("\n");
sb.append(" botType: ").append(toIndentedString(botType)).append("\n");
sb.append(" enable: ").append(toIndentedString(enable)).append("\n");
sb.append(" host: ").append(toIndentedString(host)).append("\n");
sb.append(" projectName: ").append(toIndentedString(projectName)).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