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

com.antgroup.antchain.openapi.twc.models.JudicialBankInfo 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 JudicialBankInfo extends TeaModel {
    // 开户行
    @NameInMap("account_bank")
    @Validation(required = true)
    public String accountBank;

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

    // 开户名称
    @NameInMap("account_name")
    @Validation(required = true)
    public String accountName;

    // 开户联系电话
    @NameInMap("account_contact_phone")
    @Validation(required = true)
    public String accountContactPhone;

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

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

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

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

    public JudicialBankInfo setAccountContactPhone(String accountContactPhone) {
        this.accountContactPhone = accountContactPhone;
        return this;
    }
    public String getAccountContactPhone() {
        return this.accountContactPhone;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy