com.volcengine.cdn.model.RefererAccessRuleForBatchUpdateCdnConfigInput Maven / Gradle / Ivy
/*
* 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.ReferersTypeForBatchUpdateCdnConfigInput;
import com.volcengine.cdn.model.SharedConfigForBatchUpdateCdnConfigInput;
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;
/**
* RefererAccessRuleForBatchUpdateCdnConfigInput
*/
public class RefererAccessRuleForBatchUpdateCdnConfigInput {
@SerializedName("AllowEmpty")
private Boolean allowEmpty = null;
@SerializedName("Referers")
private List referers = null;
@SerializedName("ReferersType")
private ReferersTypeForBatchUpdateCdnConfigInput referersType = null;
@SerializedName("RuleType")
private String ruleType = null;
@SerializedName("SharedConfig")
private SharedConfigForBatchUpdateCdnConfigInput sharedConfig = null;
@SerializedName("Switch")
private Boolean _switch = null;
public RefererAccessRuleForBatchUpdateCdnConfigInput allowEmpty(Boolean allowEmpty) {
this.allowEmpty = allowEmpty;
return this;
}
/**
* Get allowEmpty
* @return allowEmpty
**/
@Schema(description = "")
public Boolean isAllowEmpty() {
return allowEmpty;
}
public void setAllowEmpty(Boolean allowEmpty) {
this.allowEmpty = allowEmpty;
}
public RefererAccessRuleForBatchUpdateCdnConfigInput referers(List referers) {
this.referers = referers;
return this;
}
public RefererAccessRuleForBatchUpdateCdnConfigInput addReferersItem(String referersItem) {
if (this.referers == null) {
this.referers = new ArrayList();
}
this.referers.add(referersItem);
return this;
}
/**
* Get referers
* @return referers
**/
@Schema(description = "")
public List getReferers() {
return referers;
}
public void setReferers(List referers) {
this.referers = referers;
}
public RefererAccessRuleForBatchUpdateCdnConfigInput referersType(ReferersTypeForBatchUpdateCdnConfigInput referersType) {
this.referersType = referersType;
return this;
}
/**
* Get referersType
* @return referersType
**/
@Valid
@Schema(description = "")
public ReferersTypeForBatchUpdateCdnConfigInput getReferersType() {
return referersType;
}
public void setReferersType(ReferersTypeForBatchUpdateCdnConfigInput referersType) {
this.referersType = referersType;
}
public RefererAccessRuleForBatchUpdateCdnConfigInput 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 RefererAccessRuleForBatchUpdateCdnConfigInput sharedConfig(SharedConfigForBatchUpdateCdnConfigInput sharedConfig) {
this.sharedConfig = sharedConfig;
return this;
}
/**
* Get sharedConfig
* @return sharedConfig
**/
@Valid
@Schema(description = "")
public SharedConfigForBatchUpdateCdnConfigInput getSharedConfig() {
return sharedConfig;
}
public void setSharedConfig(SharedConfigForBatchUpdateCdnConfigInput sharedConfig) {
this.sharedConfig = sharedConfig;
}
public RefererAccessRuleForBatchUpdateCdnConfigInput _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;
}
RefererAccessRuleForBatchUpdateCdnConfigInput refererAccessRuleForBatchUpdateCdnConfigInput = (RefererAccessRuleForBatchUpdateCdnConfigInput) o;
return Objects.equals(this.allowEmpty, refererAccessRuleForBatchUpdateCdnConfigInput.allowEmpty) &&
Objects.equals(this.referers, refererAccessRuleForBatchUpdateCdnConfigInput.referers) &&
Objects.equals(this.referersType, refererAccessRuleForBatchUpdateCdnConfigInput.referersType) &&
Objects.equals(this.ruleType, refererAccessRuleForBatchUpdateCdnConfigInput.ruleType) &&
Objects.equals(this.sharedConfig, refererAccessRuleForBatchUpdateCdnConfigInput.sharedConfig) &&
Objects.equals(this._switch, refererAccessRuleForBatchUpdateCdnConfigInput._switch);
}
@Override
public int hashCode() {
return Objects.hash(allowEmpty, referers, referersType, ruleType, sharedConfig, _switch);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RefererAccessRuleForBatchUpdateCdnConfigInput {\n");
sb.append(" allowEmpty: ").append(toIndentedString(allowEmpty)).append("\n");
sb.append(" referers: ").append(toIndentedString(referers)).append("\n");
sb.append(" referersType: ").append(toIndentedString(referersType)).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