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

com.antgroup.antchain.openapi.twc.models.BankAccountInfo 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 BankAccountInfo extends TeaModel {
    // 开户名称
    @NameInMap("account_name")
    @Validation(required = true)
    public String accountName;

    // 开户行
    @NameInMap("account_bank")
    @Validation(required = true)
    public String accountBank;

    // 开户账号
    @NameInMap("account_number")
    @Validation(required = true)
    public String accountNumber;

    // 联系电话
    @NameInMap("account_phone")
    @Validation(required = true)
    public String accountPhone;

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

    public BankAccountInfo setAccountName(String accountName) {
        this.accountName = accountName;
        return this;
    }
    public String getAccountName() {
        return this.accountName;
    }

    public BankAccountInfo setAccountBank(String accountBank) {
        this.accountBank = accountBank;
        return this;
    }
    public String getAccountBank() {
        return this.accountBank;
    }

    public BankAccountInfo setAccountNumber(String accountNumber) {
        this.accountNumber = accountNumber;
        return this;
    }
    public String getAccountNumber() {
        return this.accountNumber;
    }

    public BankAccountInfo setAccountPhone(String accountPhone) {
        this.accountPhone = accountPhone;
        return this;
    }
    public String getAccountPhone() {
        return this.accountPhone;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy