Skip to main content

payrail_core/
config.rs

1/// Provider environment.
2#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
3pub enum Environment {
4    /// Sandbox or test mode.
5    Sandbox,
6    /// Production or live mode.
7    Production,
8}