PayMittoEnvironment
Definition
public enum PayMittoEnvironment: Sendable {
case production
case 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
public extension PayMittoEnvironment {
static let `default`: Self = .sandbox
}private let environment: PayMittoEnvironment = .defaultSample Usage
private let environment: PayMittoEnvironment = .sandboxUpdated 7 days ago
