For AI agents: visit https://developer.readyremit.com/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
export enum PayMittoTransferMethod {
BANK_ACCOUNT = 'bankAccount',
CASH_PICKUP = 'cashPickup',
MOBILE_WALLET = 'mobileWallet',
PUSH_TO_CARD = 'pushToCard',
}
| Case | Description |
|---|
| bankAccount | Bank account |
| cashPickup | Cash pickup |
| mobileWallet | Mobile wallet |
| pushToCard | Push to card |
import { startSDK, PayMittoEnvironment, PayMittoTransferMethod } from 'react-native-paymitto-sdk';
startSDK({
configuration: {
environment: PayMittoEnvironment.Sandbox,
transferMethod: PayMittoTransferMethod.MOBILE_WALLET,
},
});