com.aliyun.dingtalkdatacenter_1_0.models.GetQualificationCertResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class GetQualificationCertResponseBody extends TeaModel {
/**
* example:
* [{"EntName":"企业名称", "CertType":"证书类型", "CertNum":"证书认证编号", "ValidStartDate":"有效期开始日期", "ValidEndDate":"有效期截止日期", "AuthorizeDate":"授权日期", "AuthorizeDepartment":"授权部门", "PubDate":"公示日期", "Province":"省份", "CertScope":"认证范围"} ]
*/
@NameInMap("data")
public String data;
@NameInMap("total")
public Long total;
public static GetQualificationCertResponseBody build(java.util.Map map) throws Exception {
GetQualificationCertResponseBody self = new GetQualificationCertResponseBody();
return TeaModel.build(map, self);
}
public GetQualificationCertResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetQualificationCertResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
}