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

com.antgroup.antchain.openapi.das.models.TmCoownerInfo Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.das.models;

import com.aliyun.tea.*;

public class TmCoownerInfo extends TeaModel {
    // 共有人中文名称
    @NameInMap("coowner_name_cn")
    public String coownerNameCn;

    // 共有人中文地址
    @NameInMap("coowner_addr_cn")
    public String coownerAddrCn;

    // 共有人英文名称
    @NameInMap("coowner_name_en")
    public String coownerNameEn;

    // 共有人英文地址
    @NameInMap("coowner_addr_en")
    public String coownerAddrEn;

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

    public TmCoownerInfo setCoownerNameCn(String coownerNameCn) {
        this.coownerNameCn = coownerNameCn;
        return this;
    }
    public String getCoownerNameCn() {
        return this.coownerNameCn;
    }

    public TmCoownerInfo setCoownerAddrCn(String coownerAddrCn) {
        this.coownerAddrCn = coownerAddrCn;
        return this;
    }
    public String getCoownerAddrCn() {
        return this.coownerAddrCn;
    }

    public TmCoownerInfo setCoownerNameEn(String coownerNameEn) {
        this.coownerNameEn = coownerNameEn;
        return this;
    }
    public String getCoownerNameEn() {
        return this.coownerNameEn;
    }

    public TmCoownerInfo setCoownerAddrEn(String coownerAddrEn) {
        this.coownerAddrEn = coownerAddrEn;
        return this;
    }
    public String getCoownerAddrEn() {
        return this.coownerAddrEn;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy