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

com.antgroup.antchain.openapi.baasdt.models.IPCardInfo Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class IPCardInfo extends TeaModel {
    // 卡户名
    @NameInMap("account_holder_name")
    @Validation(required = true)
    public String accountHolderName;

    // 卡号
    @NameInMap("account_no")
    @Validation(required = true)
    public String accountNo;

    // 银行名称
    @NameInMap("account_inst_name")
    @Validation(required = true)
    public String accountInstName;

    // 银行缩写
    @NameInMap("account_inst_id")
    @Validation(required = true)
    public String accountInstId;

    // 联行号
    @NameInMap("bank_code")
    public String bankCode;

    // 开户行所在省份
    @NameInMap("account_inst_province")
    @Validation(required = true)
    public String accountInstProvince;

    // 开户行所在城市
    @NameInMap("account_inst_city")
    @Validation(required = true)
    public String accountInstCity;

    // 开户行支行名称
    @NameInMap("account_branch_name")
    @Validation(required = true)
    public String accountBranchName;

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

    public IPCardInfo setAccountHolderName(String accountHolderName) {
        this.accountHolderName = accountHolderName;
        return this;
    }
    public String getAccountHolderName() {
        return this.accountHolderName;
    }

    public IPCardInfo setAccountNo(String accountNo) {
        this.accountNo = accountNo;
        return this;
    }
    public String getAccountNo() {
        return this.accountNo;
    }

    public IPCardInfo setAccountInstName(String accountInstName) {
        this.accountInstName = accountInstName;
        return this;
    }
    public String getAccountInstName() {
        return this.accountInstName;
    }

    public IPCardInfo setAccountInstId(String accountInstId) {
        this.accountInstId = accountInstId;
        return this;
    }
    public String getAccountInstId() {
        return this.accountInstId;
    }

    public IPCardInfo setBankCode(String bankCode) {
        this.bankCode = bankCode;
        return this;
    }
    public String getBankCode() {
        return this.bankCode;
    }

    public IPCardInfo setAccountInstProvince(String accountInstProvince) {
        this.accountInstProvince = accountInstProvince;
        return this;
    }
    public String getAccountInstProvince() {
        return this.accountInstProvince;
    }

    public IPCardInfo setAccountInstCity(String accountInstCity) {
        this.accountInstCity = accountInstCity;
        return this;
    }
    public String getAccountInstCity() {
        return this.accountInstCity;
    }

    public IPCardInfo setAccountBranchName(String accountBranchName) {
        this.accountBranchName = accountBranchName;
        return this;
    }
    public String getAccountBranchName() {
        return this.accountBranchName;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy