Bank Account Funding Source
data class BankAccountFundingSource(val id: String, val owner: String, val version: Int, val createdAt: Date, val updatedAt: Date, val state: FundingSourceState, val flags: List<FundingSourceFlags>, val currency: String, val transactionVelocity: TransactionVelocity? = null, val type: FundingSourceType = FundingSourceType.BANK_ACCOUNT, val bankAccountType: BankAccountFundingSource.BankAccountType, val last4: String, val institutionName: String, val institutionLogo: InstitutionLogo?, val unfundedAmount: CurrencyAmount?) : FundingSource
Representation of a bank account funding source used in the Sudo Platform Virtual Cards SDK.
Constructors
Link copied to clipboard
constructor(id: String, owner: String, version: Int, createdAt: Date, updatedAt: Date, state: FundingSourceState, flags: List<FundingSourceFlags>, currency: String, transactionVelocity: TransactionVelocity? = null, type: FundingSourceType = FundingSourceType.BANK_ACCOUNT, bankAccountType: BankAccountFundingSource.BankAccountType, last4: String, institutionName: String, institutionLogo: InstitutionLogo?, unfundedAmount: CurrencyAmount?)
Properties
Link copied to clipboard
BankAccountType The type of bank account.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
See BaseFundingSource.id.
Link copied to clipboard
InstitutionLogo The Mime type and the Base64 encoded image data of the institution logo if any.
Link copied to clipboard
String The name of the institution at which the bank account is held.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
CurrencyAmount The amount by which this funding source is unfunded in the currency of the funding source, if unfunded. Otherwise null.
Link copied to clipboard
Link copied to clipboard