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

com.antgroup.antchain.openapi.twc.models.CompanyTwoMetaInfo Maven / Gradle / Ivy

There is a newer version: 1.12.23
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;

import com.aliyun.tea.*;

public class CompanyTwoMetaInfo extends TeaModel {
    // 企业证件名称
    @NameInMap("cert_name")
    @Validation(required = true)
    public String certName;

    // 企业证件号码
    @NameInMap("cert_no")
    @Validation(required = true)
    public String certNo;

    // 证件类型, 默认社会统一信用代码  NATIONAL_LEGAL_MERGE:统一社会信用代码,NATIONAL_LEGAL:营业执照号码
    @NameInMap("cert_type")
    public String certType;

    public static CompanyTwoMetaInfo build(java.util.Map map) throws Exception {
        CompanyTwoMetaInfo self = new CompanyTwoMetaInfo();
        return TeaModel.build(map, self);
    }

    public CompanyTwoMetaInfo setCertName(String certName) {
        this.certName = certName;
        return this;
    }
    public String getCertName() {
        return this.certName;
    }

    public CompanyTwoMetaInfo setCertNo(String certNo) {
        this.certNo = certNo;
        return this;
    }
    public String getCertNo() {
        return this.certNo;
    }

    public CompanyTwoMetaInfo setCertType(String certType) {
        this.certType = certType;
        return this;
    }
    public String getCertType() {
        return this.certType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy