1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
use serde_derive::{Deserialize, Serialize};

/// An enum representing the possible values of an `Source`'s `status` field.
#[derive(Copy, Clone, Debug, Deserialize, Serialize, Eq, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum SourceStatus {
    Canceled,
    Chargeable,
    Consumed,
    Failed,
    Pending,
}

impl SourceStatus {
    pub fn as_str(self) -> &'static str {
        match self {
            SourceStatus::Canceled => "canceled",
            SourceStatus::Chargeable => "chargeable",
            SourceStatus::Consumed => "consumed",
            SourceStatus::Failed => "failed",
            SourceStatus::Pending => "pending",
        }
    }
}

impl AsRef<str> for SourceStatus {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl std::fmt::Display for SourceStatus {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        self.as_str().fmt(f)
    }
}

/// An enum representing the possible values of an `Source`'s `usage` field.
#[derive(Copy, Clone, Debug, Deserialize, Serialize, Eq, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum SourceUsage {
    Reusable,
    SingleUse,
}

impl SourceUsage {
    pub fn as_str(self) -> &'static str {
        match self {
            SourceUsage::Reusable => "reusable",
            SourceUsage::SingleUse => "single_use",
        }
    }
}

impl AsRef<str> for SourceUsage {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl std::fmt::Display for SourceUsage {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        self.as_str().fmt(f)
    }
}

/// An enum representing the possible values of an `SourceRedirectFlow`'s `failure_reason` field.
#[derive(Copy, Clone, Debug, Deserialize, Serialize, Eq, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum SourceRedirectFlowFailureReason {
    Declined,
    ProcessingError,
    UserAbort,
}

impl SourceRedirectFlowFailureReason {
    pub fn as_str(self) -> &'static str {
        match self {
            SourceRedirectFlowFailureReason::Declined => "declined",
            SourceRedirectFlowFailureReason::ProcessingError => "processing_error",
            SourceRedirectFlowFailureReason::UserAbort => "user_abort",
        }
    }
}

impl AsRef<str> for SourceRedirectFlowFailureReason {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl std::fmt::Display for SourceRedirectFlowFailureReason {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        self.as_str().fmt(f)
    }
}

/// An enum representing the possible values of an `SourceRedirectFlow`'s `status` field.
#[derive(Copy, Clone, Debug, Deserialize, Serialize, Eq, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum SourceRedirectFlowStatus {
    Failed,
    NotRequired,
    Pending,
    Succeeded,
}

impl SourceRedirectFlowStatus {
    pub fn as_str(self) -> &'static str {
        match self {
            SourceRedirectFlowStatus::Failed => "failed",
            SourceRedirectFlowStatus::NotRequired => "not_required",
            SourceRedirectFlowStatus::Pending => "pending",
            SourceRedirectFlowStatus::Succeeded => "succeeded",
        }
    }
}

impl AsRef<str> for SourceRedirectFlowStatus {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl std::fmt::Display for SourceRedirectFlowStatus {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        self.as_str().fmt(f)
    }
}