All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.waf.model.CreateCustomPageRequest Maven / Gradle / Ivy

There is a newer version: 0.1.129
Show 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.AccurateForCreateCustomPageInput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
 * CreateCustomPageRequest
 */



public class CreateCustomPageRequest {
  @SerializedName("Accurate")
  private AccurateForCreateCustomPageInput 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("Host")
  private String host = 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 CreateCustomPageRequest accurate(AccurateForCreateCustomPageInput accurate) {
    this.accurate = accurate;
    return this;
  }

   /**
   * Get accurate
   * @return accurate
  **/
  @Valid
  @Schema(description = "")
  public AccurateForCreateCustomPageInput getAccurate() {
    return accurate;
  }

  public void setAccurate(AccurateForCreateCustomPageInput accurate) {
    this.accurate = accurate;
  }

  public CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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 CreateCustomPageRequest 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;
    }
    CreateCustomPageRequest createCustomPageRequest = (CreateCustomPageRequest) o;
    return Objects.equals(this.accurate, createCustomPageRequest.accurate) &&
        Objects.equals(this.advanced, createCustomPageRequest.advanced) &&
        Objects.equals(this.body, createCustomPageRequest.body) &&
        Objects.equals(this.clientIp, createCustomPageRequest.clientIp) &&
        Objects.equals(this.code, createCustomPageRequest.code) &&
        Objects.equals(this.contentType, createCustomPageRequest.contentType) &&
        Objects.equals(this.description, createCustomPageRequest.description) &&
        Objects.equals(this.enable, createCustomPageRequest.enable) &&
        Objects.equals(this.host, createCustomPageRequest.host) &&
        Objects.equals(this.name, createCustomPageRequest.name) &&
        Objects.equals(this.pageMode, createCustomPageRequest.pageMode) &&
        Objects.equals(this.policy, createCustomPageRequest.policy) &&
        Objects.equals(this.redirectUrl, createCustomPageRequest.redirectUrl) &&
        Objects.equals(this.url, createCustomPageRequest.url);
  }

  @Override
  public int hashCode() {
    return Objects.hash(accurate, advanced, body, clientIp, code, contentType, description, enable, host, name, pageMode, policy, redirectUrl, url);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class CreateCustomPageRequest {\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("    host: ").append(toIndentedString(host)).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    ");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy