For AI agents: visit https://developer.readyremit.com/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
export type PayMittoSourceAccount = {
alias: string;
balance: number;
last4: string;
sourceProviderId: string;
}
| Property | Type | Description |
|---|
| alias | String | An alias for the source account |
| balance | Number | The available balance of the source account |
| last4 | String | The last four digits of the source account |
| sourceProviderId | String | A unique identifier for the source account |
import { startSDK, PayMittoEnvironment } from 'react-native-paymitto-sdk';
const sourceAccounts = [
{ alias: 'Checking', balance: 500.0, last4: '1234', sourceProviderId: '5163e857-9a05-4170-9d35-d6ad780a0584' },
];
startSDK({
configuration: {
environment: PayMittoEnvironment.Sandbox,
sourceAccounts,
},
});