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

jp.gopay.sdk.models.common.bankaccounts.JapaneseBankAccount Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
package jp.gopay.sdk.models.common.bankaccounts;

import jp.gopay.sdk.types.BankAccountCountry;
import jp.gopay.sdk.types.BankAccountType;

public class JapaneseBankAccount extends BaseBankAccount{

    public JapaneseBankAccount(String holderName, String bankName, String branchName, String currency, String accountNumber, BankAccountType accountType) {
        setCommonFields(BankAccountCountry.JP, holderName, bankName, currency, accountNumber, accountType);
        this.setBranchName(branchName);
    }

    public JapaneseBankAccount withBankAddress(String bankAddress){
        this.setBankAddress(bankAddress);
        return this;
    }

    public JapaneseBankAccount withSwiftCode(String swiftCode){
        this.setSwiftCode(swiftCode);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy