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

com.volcengine.cdn.model.IpAccessRuleForAddCdnDomainInput Maven / Gradle / Ivy

There is a newer version: 0.1.129
Show newest version
/*
 * cdn
 * 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.cdn.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.cdn.model.SharedConfigForAddCdnDomainInput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
 * IpAccessRuleForAddCdnDomainInput
 */



public class IpAccessRuleForAddCdnDomainInput {
  @SerializedName("Ip")
  private List ip = null;

  @SerializedName("RuleType")
  private String ruleType = null;

  @SerializedName("SharedConfig")
  private SharedConfigForAddCdnDomainInput sharedConfig = null;

  @SerializedName("Switch")
  private Boolean _switch = null;

  public IpAccessRuleForAddCdnDomainInput ip(List ip) {
    this.ip = ip;
    return this;
  }

  public IpAccessRuleForAddCdnDomainInput addIpItem(String ipItem) {
    if (this.ip == null) {
      this.ip = new ArrayList();
    }
    this.ip.add(ipItem);
    return this;
  }

   /**
   * Get ip
   * @return ip
  **/
  @Schema(description = "")
  public List getIp() {
    return ip;
  }

  public void setIp(List ip) {
    this.ip = ip;
  }

  public IpAccessRuleForAddCdnDomainInput ruleType(String ruleType) {
    this.ruleType = ruleType;
    return this;
  }

   /**
   * Get ruleType
   * @return ruleType
  **/
  @Schema(description = "")
  public String getRuleType() {
    return ruleType;
  }

  public void setRuleType(String ruleType) {
    this.ruleType = ruleType;
  }

  public IpAccessRuleForAddCdnDomainInput sharedConfig(SharedConfigForAddCdnDomainInput sharedConfig) {
    this.sharedConfig = sharedConfig;
    return this;
  }

   /**
   * Get sharedConfig
   * @return sharedConfig
  **/
  @Valid
  @Schema(description = "")
  public SharedConfigForAddCdnDomainInput getSharedConfig() {
    return sharedConfig;
  }

  public void setSharedConfig(SharedConfigForAddCdnDomainInput sharedConfig) {
    this.sharedConfig = sharedConfig;
  }

  public IpAccessRuleForAddCdnDomainInput _switch(Boolean _switch) {
    this._switch = _switch;
    return this;
  }

   /**
   * Get _switch
   * @return _switch
  **/
  @Schema(description = "")
  public Boolean isSwitch() {
    return _switch;
  }

  public void setSwitch(Boolean _switch) {
    this._switch = _switch;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    IpAccessRuleForAddCdnDomainInput ipAccessRuleForAddCdnDomainInput = (IpAccessRuleForAddCdnDomainInput) o;
    return Objects.equals(this.ip, ipAccessRuleForAddCdnDomainInput.ip) &&
        Objects.equals(this.ruleType, ipAccessRuleForAddCdnDomainInput.ruleType) &&
        Objects.equals(this.sharedConfig, ipAccessRuleForAddCdnDomainInput.sharedConfig) &&
        Objects.equals(this._switch, ipAccessRuleForAddCdnDomainInput._switch);
  }

  @Override
  public int hashCode() {
    return Objects.hash(ip, ruleType, sharedConfig, _switch);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class IpAccessRuleForAddCdnDomainInput {\n");
    
    sb.append("    ip: ").append(toIndentedString(ip)).append("\n");
    sb.append("    ruleType: ").append(toIndentedString(ruleType)).append("\n");
    sb.append("    sharedConfig: ").append(toIndentedString(sharedConfig)).append("\n");
    sb.append("    _switch: ").append(toIndentedString(_switch)).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