
com.aliyun.cdn20180510.models.DescribeCdnCertificateDetailByIdResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cdn20180510.models;
import com.aliyun.tea.*;
public class DescribeCdnCertificateDetailByIdResponseBody extends TeaModel {
/**
* The content of the certificate.
*/
@NameInMap("Cert")
public String cert;
/**
* The ID of the certificate.
*/
@NameInMap("CertId")
public Long certId;
/**
* The name of the certificate.
*/
@NameInMap("CertName")
public String certName;
/**
* The public key of the certificate.
*/
@NameInMap("Key")
public String key;
/**
* The ID of the request.
*/
@NameInMap("RequestId")
public String requestId;
public static DescribeCdnCertificateDetailByIdResponseBody build(java.util.Map map) throws Exception {
DescribeCdnCertificateDetailByIdResponseBody self = new DescribeCdnCertificateDetailByIdResponseBody();
return TeaModel.build(map, self);
}
public DescribeCdnCertificateDetailByIdResponseBody setCert(String cert) {
this.cert = cert;
return this;
}
public String getCert() {
return this.cert;
}
public DescribeCdnCertificateDetailByIdResponseBody setCertId(Long certId) {
this.certId = certId;
return this;
}
public Long getCertId() {
return this.certId;
}
public DescribeCdnCertificateDetailByIdResponseBody setCertName(String certName) {
this.certName = certName;
return this;
}
public String getCertName() {
return this.certName;
}
public DescribeCdnCertificateDetailByIdResponseBody setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
public DescribeCdnCertificateDetailByIdResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy