RecipientUsBankAccount

data class RecipientUsBankAccount(val id: String?, val accountHolderName: String?, val accountNumber: String, val routingNumber: String, val bankName: String?, val accountType: AccountType?) : RecipientPaymentInstrument

Data class representing a US Bank Account for third party payment, that might support ACH, RFP, RTP or Wire Transfer.

Constructors

Link copied to clipboard
constructor(accountHolderName: String?, accountNumber: String, routingNumber: String, bankName: String?, accountType: AccountType?)
constructor(id: String?, accountHolderName: String?, accountNumber: String, routingNumber: String, bankName: String?, accountType: AccountType?)

Properties

Link copied to clipboard

This is the name of the customer or company that owns the bank account. As per regulations, the Wallet holder and bank account holder must be the same.

Link copied to clipboard

A bank account number.

Link copied to clipboard

The account type.

Link copied to clipboard

Bank name.

Link copied to clipboard
open override val id: String?

The instrument id

Link copied to clipboard

The type of the payment instrument.

Link copied to clipboard

For USD accounts, this is the 9-digit routing number of the bank.