com.volcengine.waf.model.AutoCCForCreateDomainOutput 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;
/**
* AutoCCForCreateDomainOutput
*/
public class AutoCCForCreateDomainOutput {
@SerializedName("Action")
private String action = null;
@SerializedName("AutoCCEnable")
private Integer autoCCEnable = null;
@SerializedName("DefenceLevel")
private String defenceLevel = null;
public AutoCCForCreateDomainOutput 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 AutoCCForCreateDomainOutput autoCCEnable(Integer autoCCEnable) {
this.autoCCEnable = autoCCEnable;
return this;
}
/**
* Get autoCCEnable
* @return autoCCEnable
**/
@Schema(description = "")
public Integer getAutoCCEnable() {
return autoCCEnable;
}
public void setAutoCCEnable(Integer autoCCEnable) {
this.autoCCEnable = autoCCEnable;
}
public AutoCCForCreateDomainOutput defenceLevel(String defenceLevel) {
this.defenceLevel = defenceLevel;
return this;
}
/**
* Get defenceLevel
* @return defenceLevel
**/
@Schema(description = "")
public String getDefenceLevel() {
return defenceLevel;
}
public void setDefenceLevel(String defenceLevel) {
this.defenceLevel = defenceLevel;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AutoCCForCreateDomainOutput autoCCForCreateDomainOutput = (AutoCCForCreateDomainOutput) o;
return Objects.equals(this.action, autoCCForCreateDomainOutput.action) &&
Objects.equals(this.autoCCEnable, autoCCForCreateDomainOutput.autoCCEnable) &&
Objects.equals(this.defenceLevel, autoCCForCreateDomainOutput.defenceLevel);
}
@Override
public int hashCode() {
return Objects.hash(action, autoCCEnable, defenceLevel);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AutoCCForCreateDomainOutput {\n");
sb.append(" action: ").append(toIndentedString(action)).append("\n");
sb.append(" autoCCEnable: ").append(toIndentedString(autoCCEnable)).append("\n");
sb.append(" defenceLevel: ").append(toIndentedString(defenceLevel)).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