PayMitto Environment
Definition
export enum PayMittoEnvironment {
Production = 'PRODUCTION',
Sandbox = 'SANDBOX',
}Cases
| Case | Description |
|---|---|
| Production | The live environment where real users interact with your application |
| Sandbox | A safe, isolated environment designed for development, testing, and experimentation |
Default
PayMittoEnvironment.Sandbox
Sample Usage
import { startSDK, PayMittoEnvironment } from 'react-native-paymitto-sdk';
startSDK({
configuration: { environment: PayMittoEnvironment.Sandbox },
});import { startSDK, PayMittoEnvironment } from 'react-native-paymitto-sdk';
startSDK({
configuration: { environment: PayMittoEnvironment.Production },
});Updated 1 day ago
