For AI agents: visit https://developer.readyremit.com/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
| 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 |
val sourceAccount = SourceAccount(
alias = "My Account",
last4 = "1232",
balance = "1999.99".toBigDecimal(),
sourceProviderId = "external-id"
)