com.volcengine.dcdn.model.BindListForListCertBindOutput Maven / Gradle / Ivy
/*
* dcdn
* 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.dcdn.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;
/**
* BindListForListCertBindOutput
*/
public class BindListForListCertBindOutput {
@SerializedName("CertId")
private String certId = null;
@SerializedName("CertName")
private String certName = null;
@SerializedName("CertSource")
private String certSource = null;
@SerializedName("DeployStatus")
private String deployStatus = null;
@SerializedName("DomainId")
private String domainId = null;
@SerializedName("DomainName")
private String domainName = null;
@SerializedName("Expire")
private String expire = null;
public BindListForListCertBindOutput certId(String certId) {
this.certId = certId;
return this;
}
/**
* Get certId
* @return certId
**/
@Schema(description = "")
public String getCertId() {
return certId;
}
public void setCertId(String certId) {
this.certId = certId;
}
public BindListForListCertBindOutput certName(String certName) {
this.certName = certName;
return this;
}
/**
* Get certName
* @return certName
**/
@Schema(description = "")
public String getCertName() {
return certName;
}
public void setCertName(String certName) {
this.certName = certName;
}
public BindListForListCertBindOutput certSource(String certSource) {
this.certSource = certSource;
return this;
}
/**
* Get certSource
* @return certSource
**/
@Schema(description = "")
public String getCertSource() {
return certSource;
}
public void setCertSource(String certSource) {
this.certSource = certSource;
}
public BindListForListCertBindOutput deployStatus(String deployStatus) {
this.deployStatus = deployStatus;
return this;
}
/**
* Get deployStatus
* @return deployStatus
**/
@Schema(description = "")
public String getDeployStatus() {
return deployStatus;
}
public void setDeployStatus(String deployStatus) {
this.deployStatus = deployStatus;
}
public BindListForListCertBindOutput domainId(String domainId) {
this.domainId = domainId;
return this;
}
/**
* Get domainId
* @return domainId
**/
@Schema(description = "")
public String getDomainId() {
return domainId;
}
public void setDomainId(String domainId) {
this.domainId = domainId;
}
public BindListForListCertBindOutput domainName(String domainName) {
this.domainName = domainName;
return this;
}
/**
* Get domainName
* @return domainName
**/
@Schema(description = "")
public String getDomainName() {
return domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public BindListForListCertBindOutput expire(String expire) {
this.expire = expire;
return this;
}
/**
* Get expire
* @return expire
**/
@Schema(description = "")
public String getExpire() {
return expire;
}
public void setExpire(String expire) {
this.expire = expire;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BindListForListCertBindOutput bindListForListCertBindOutput = (BindListForListCertBindOutput) o;
return Objects.equals(this.certId, bindListForListCertBindOutput.certId) &&
Objects.equals(this.certName, bindListForListCertBindOutput.certName) &&
Objects.equals(this.certSource, bindListForListCertBindOutput.certSource) &&
Objects.equals(this.deployStatus, bindListForListCertBindOutput.deployStatus) &&
Objects.equals(this.domainId, bindListForListCertBindOutput.domainId) &&
Objects.equals(this.domainName, bindListForListCertBindOutput.domainName) &&
Objects.equals(this.expire, bindListForListCertBindOutput.expire);
}
@Override
public int hashCode() {
return Objects.hash(certId, certName, certSource, deployStatus, domainId, domainName, expire);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BindListForListCertBindOutput {\n");
sb.append(" certId: ").append(toIndentedString(certId)).append("\n");
sb.append(" certName: ").append(toIndentedString(certName)).append("\n");
sb.append(" certSource: ").append(toIndentedString(certSource)).append("\n");
sb.append(" deployStatus: ").append(toIndentedString(deployStatus)).append("\n");
sb.append(" domainId: ").append(toIndentedString(domainId)).append("\n");
sb.append(" domainName: ").append(toIndentedString(domainName)).append("\n");
sb.append(" expire: ").append(toIndentedString(expire)).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 ");
}
}