com.volcengine.waf.model.UpdateCustomPageRequest 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.AccurateForUpdateCustomPageInput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* UpdateCustomPageRequest
*/
public class UpdateCustomPageRequest {
@SerializedName("Accurate")
private AccurateForUpdateCustomPageInput accurate = null;
@SerializedName("Advanced")
private Integer advanced = null;
@SerializedName("Body")
private String body = null;
@SerializedName("ClientIp")
private String clientIp = null;
@SerializedName("Code")
private Integer code = null;
@SerializedName("ContentType")
private String contentType = null;
@SerializedName("Description")
private String description = null;
@SerializedName("Enable")
private Integer enable = null;
@SerializedName("GroupId")
private Integer groupId = null;
@SerializedName("Host")
private String host = null;
@SerializedName("Id")
private Integer id = null;
@SerializedName("Name")
private String name = null;
@SerializedName("PageMode")
private Integer pageMode = null;
@SerializedName("Policy")
private Integer policy = null;
@SerializedName("RedirectUrl")
private String redirectUrl = null;
@SerializedName("Url")
private String url = null;
public UpdateCustomPageRequest accurate(AccurateForUpdateCustomPageInput accurate) {
this.accurate = accurate;
return this;
}
/**
* Get accurate
* @return accurate
**/
@Valid
@Schema(description = "")
public AccurateForUpdateCustomPageInput getAccurate() {
return accurate;
}
public void setAccurate(AccurateForUpdateCustomPageInput accurate) {
this.accurate = accurate;
}
public UpdateCustomPageRequest advanced(Integer advanced) {
this.advanced = advanced;
return this;
}
/**
* Get advanced
* @return advanced
**/
@Schema(description = "")
public Integer getAdvanced() {
return advanced;
}
public void setAdvanced(Integer advanced) {
this.advanced = advanced;
}
public UpdateCustomPageRequest body(String body) {
this.body = body;
return this;
}
/**
* Get body
* @return body
**/
@Schema(description = "")
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public UpdateCustomPageRequest clientIp(String clientIp) {
this.clientIp = clientIp;
return this;
}
/**
* Get clientIp
* @return clientIp
**/
@NotNull
@Schema(required = true, description = "")
public String getClientIp() {
return clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
public UpdateCustomPageRequest code(Integer code) {
this.code = code;
return this;
}
/**
* Get code
* @return code
**/
@NotNull
@Schema(required = true, description = "")
public Integer getCode() {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public UpdateCustomPageRequest contentType(String contentType) {
this.contentType = contentType;
return this;
}
/**
* Get contentType
* @return contentType
**/
@Schema(description = "")
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
public UpdateCustomPageRequest 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 UpdateCustomPageRequest 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 UpdateCustomPageRequest groupId(Integer groupId) {
this.groupId = groupId;
return this;
}
/**
* Get groupId
* @return groupId
**/
@Schema(description = "")
public Integer getGroupId() {
return groupId;
}
public void setGroupId(Integer groupId) {
this.groupId = groupId;
}
public UpdateCustomPageRequest 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 UpdateCustomPageRequest id(Integer id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@NotNull
@Schema(required = true, description = "")
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public UpdateCustomPageRequest name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@NotNull
@Schema(required = true, description = "")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public UpdateCustomPageRequest pageMode(Integer pageMode) {
this.pageMode = pageMode;
return this;
}
/**
* Get pageMode
* @return pageMode
**/
@NotNull
@Schema(required = true, description = "")
public Integer getPageMode() {
return pageMode;
}
public void setPageMode(Integer pageMode) {
this.pageMode = pageMode;
}
public UpdateCustomPageRequest policy(Integer policy) {
this.policy = policy;
return this;
}
/**
* Get policy
* @return policy
**/
@NotNull
@Schema(required = true, description = "")
public Integer getPolicy() {
return policy;
}
public void setPolicy(Integer policy) {
this.policy = policy;
}
public UpdateCustomPageRequest redirectUrl(String redirectUrl) {
this.redirectUrl = redirectUrl;
return this;
}
/**
* Get redirectUrl
* @return redirectUrl
**/
@Schema(description = "")
public String getRedirectUrl() {
return redirectUrl;
}
public void setRedirectUrl(String redirectUrl) {
this.redirectUrl = redirectUrl;
}
public UpdateCustomPageRequest url(String url) {
this.url = url;
return this;
}
/**
* Get url
* @return url
**/
@NotNull
@Schema(required = true, description = "")
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UpdateCustomPageRequest updateCustomPageRequest = (UpdateCustomPageRequest) o;
return Objects.equals(this.accurate, updateCustomPageRequest.accurate) &&
Objects.equals(this.advanced, updateCustomPageRequest.advanced) &&
Objects.equals(this.body, updateCustomPageRequest.body) &&
Objects.equals(this.clientIp, updateCustomPageRequest.clientIp) &&
Objects.equals(this.code, updateCustomPageRequest.code) &&
Objects.equals(this.contentType, updateCustomPageRequest.contentType) &&
Objects.equals(this.description, updateCustomPageRequest.description) &&
Objects.equals(this.enable, updateCustomPageRequest.enable) &&
Objects.equals(this.groupId, updateCustomPageRequest.groupId) &&
Objects.equals(this.host, updateCustomPageRequest.host) &&
Objects.equals(this.id, updateCustomPageRequest.id) &&
Objects.equals(this.name, updateCustomPageRequest.name) &&
Objects.equals(this.pageMode, updateCustomPageRequest.pageMode) &&
Objects.equals(this.policy, updateCustomPageRequest.policy) &&
Objects.equals(this.redirectUrl, updateCustomPageRequest.redirectUrl) &&
Objects.equals(this.url, updateCustomPageRequest.url);
}
@Override
public int hashCode() {
return Objects.hash(accurate, advanced, body, clientIp, code, contentType, description, enable, groupId, host, id, name, pageMode, policy, redirectUrl, url);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdateCustomPageRequest {\n");
sb.append(" accurate: ").append(toIndentedString(accurate)).append("\n");
sb.append(" advanced: ").append(toIndentedString(advanced)).append("\n");
sb.append(" body: ").append(toIndentedString(body)).append("\n");
sb.append(" clientIp: ").append(toIndentedString(clientIp)).append("\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" contentType: ").append(toIndentedString(contentType)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" enable: ").append(toIndentedString(enable)).append("\n");
sb.append(" groupId: ").append(toIndentedString(groupId)).append("\n");
sb.append(" host: ").append(toIndentedString(host)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" pageMode: ").append(toIndentedString(pageMode)).append("\n");
sb.append(" policy: ").append(toIndentedString(policy)).append("\n");
sb.append(" redirectUrl: ").append(toIndentedString(redirectUrl)).append("\n");
sb.append(" url: ").append(toIndentedString(url)).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 ");
}
}