SourceAccount

Properties

PropertyTypeDescription
aliasStringAn alias for the source account
balanceBigDecimalAmonut of money this source account holds.
last4StringThe last four digits of the source account
sourceProviderIdStringA unique identifier for the source account

Sample Usages

val sourceAccount = SourceAccount(
    alias = "My Account",
    last4 = "1232",
    balance = "1999.99".toBigDecimal(),
    sourceProviderId = "external-id"
)