com.antgroup.antchain.openapi.twc.models.BankAccountInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-twc Show documentation
Show all versions of openapi-twc Show documentation
Ant Chain TWC SDK for Java
// 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;
}
}