For AI agents: visit https://developer.readyremit.com/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
public struct SourceAccount: Sendable {
public init(
alias: String,
balance: Double,
last4: String,
sourceProviderId: String
) {
...
}
}
| Property | Type | Description |
|---|
| alias | String | An alias for the source account |
| balance | Double | Primary brand color applied to primary buttons and links |
| last4 | String | The last four digits of the source account |
| sourceProviderId | String | A unique identifier for the source account |
private let checkingAccount: SourceAccount = .init(
alias: "Checking",
balance: 500.00,
last4: "1234",
sourceProviderId: "5163e857-9a05-4170-9d35-d6ad780a0584"
)