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

com.antgroup.antchain.openapi.twc.models.BclContactInfo 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 BclContactInfo extends TeaModel {
    // 联系人名称,最大长度:128
    @NameInMap("name")
    @Validation(required = true)
    public String name;

    // 联系人手机号
    // 最大长度:20
    // 示例:13812348888
    @NameInMap("mobile")
    @Validation(required = true)
    public String mobile;

    // 联系人电话
    // 最大长度:20
    // 示例:0571-12345678
    @NameInMap("phone")
    public String phone;

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

    public BclContactInfo setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public BclContactInfo setMobile(String mobile) {
        this.mobile = mobile;
        return this;
    }
    public String getMobile() {
        return this.mobile;
    }

    public BclContactInfo setPhone(String phone) {
        this.phone = phone;
        return this;
    }
    public String getPhone() {
        return this.phone;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy