public enum PayMittoEnvironment: Sendable {
case production
case sandbox
}
| Case | Description |
|---|
| production | The live environment where real users interact with your application |
| sandbox | A safe, isolated environment designed for development, testing, and experimentation |
public extension PayMittoEnvironment {
static let `default`: Self = .sandbox
}
private let environment: PayMittoEnvironment = .default
private let environment: PayMittoEnvironment = .sandbox