SourceAccount
An account a sender may designate as the source of funding for a transfer.
Properties
| Property | Type | Description |
|---|---|---|
| alias | String | An alias for the source account |
| balance | BigDecimal | Amonut of money this source account holds. |
| last4 | String | The last four digits of the source account |
| sourceProviderId | String | A unique identifier for the source account |
Sample Usages
val sourceAccount = SourceAccount(
alias = "My Account",
last4 = "1232",
balance = "1999.99".toBigDecimal(),
sourceProviderId = "external-id"
)Updated 8 days ago
