com.aliyun.cas20200630.models.DescribeCACertificateListResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cas20200630 Show documentation
Show all versions of cas20200630 Show documentation
Alibaba Cloud SSL Certificates Service (20200630) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cas20200630.models;
import com.aliyun.tea.*;
public class DescribeCACertificateListResponse extends TeaModel {
@NameInMap("headers")
@Validation(required = true)
public java.util.Map headers;
@NameInMap("statusCode")
@Validation(required = true)
public Integer statusCode;
@NameInMap("body")
@Validation(required = true)
public DescribeCACertificateListResponseBody body;
public static DescribeCACertificateListResponse build(java.util.Map map) throws Exception {
DescribeCACertificateListResponse self = new DescribeCACertificateListResponse();
return TeaModel.build(map, self);
}
public DescribeCACertificateListResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public DescribeCACertificateListResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DescribeCACertificateListResponse setBody(DescribeCACertificateListResponseBody body) {
this.body = body;
return this;
}
public DescribeCACertificateListResponseBody getBody() {
return this.body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy