![JAR search and dependency download from the Maven repository](/logo.png)
jp.gopay.sdk.models.common.bankaccounts.JapaneseBankAccount Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy