All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkdatacenter_1_0.models.GetQualificationCertResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy