BankAccountFundingSource

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?)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val id: String
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

String Last 4 digits of the bank account number.

Link copied to clipboard
open override val owner: String
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
open override val version: Int