stripe_shared/
invoice_mandate_options_card.rs

1#[derive(Clone, Debug)]
2#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
3#[cfg_attr(feature = "deserialize", derive(serde::Deserialize))]
4pub struct InvoiceMandateOptionsCard {
5    /// Amount to be charged for future payments.
6    pub amount: Option<i64>,
7    /// One of `fixed` or `maximum`.
8    /// If `fixed`, the `amount` param refers to the exact amount to be charged in future payments.
9    /// If `maximum`, the amount charged can be up to the value passed for the `amount` param.
10    pub amount_type: Option<InvoiceMandateOptionsCardAmountType>,
11    /// A description of the mandate or subscription that is meant to be displayed to the customer.
12    pub description: Option<String>,
13}
14#[doc(hidden)]
15pub struct InvoiceMandateOptionsCardBuilder {
16    amount: Option<Option<i64>>,
17    amount_type: Option<Option<InvoiceMandateOptionsCardAmountType>>,
18    description: Option<Option<String>>,
19}
20
21#[allow(
22    unused_variables,
23    irrefutable_let_patterns,
24    clippy::let_unit_value,
25    clippy::match_single_binding,
26    clippy::single_match
27)]
28const _: () = {
29    use miniserde::de::{Map, Visitor};
30    use miniserde::json::Value;
31    use miniserde::{Deserialize, Result, make_place};
32    use stripe_types::miniserde_helpers::FromValueOpt;
33    use stripe_types::{MapBuilder, ObjectDeser};
34
35    make_place!(Place);
36
37    impl Deserialize for InvoiceMandateOptionsCard {
38        fn begin(out: &mut Option<Self>) -> &mut dyn Visitor {
39            Place::new(out)
40        }
41    }
42
43    struct Builder<'a> {
44        out: &'a mut Option<InvoiceMandateOptionsCard>,
45        builder: InvoiceMandateOptionsCardBuilder,
46    }
47
48    impl Visitor for Place<InvoiceMandateOptionsCard> {
49        fn map(&mut self) -> Result<Box<dyn Map + '_>> {
50            Ok(Box::new(Builder {
51                out: &mut self.out,
52                builder: InvoiceMandateOptionsCardBuilder::deser_default(),
53            }))
54        }
55    }
56
57    impl MapBuilder for InvoiceMandateOptionsCardBuilder {
58        type Out = InvoiceMandateOptionsCard;
59        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
60            Ok(match k {
61                "amount" => Deserialize::begin(&mut self.amount),
62                "amount_type" => Deserialize::begin(&mut self.amount_type),
63                "description" => Deserialize::begin(&mut self.description),
64                _ => <dyn Visitor>::ignore(),
65            })
66        }
67
68        fn deser_default() -> Self {
69            Self {
70                amount: Deserialize::default(),
71                amount_type: Deserialize::default(),
72                description: Deserialize::default(),
73            }
74        }
75
76        fn take_out(&mut self) -> Option<Self::Out> {
77            let (Some(amount), Some(amount_type), Some(description)) =
78                (self.amount, self.amount_type.take(), self.description.take())
79            else {
80                return None;
81            };
82            Some(Self::Out { amount, amount_type, description })
83        }
84    }
85
86    impl Map for Builder<'_> {
87        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
88            self.builder.key(k)
89        }
90
91        fn finish(&mut self) -> Result<()> {
92            *self.out = self.builder.take_out();
93            Ok(())
94        }
95    }
96
97    impl ObjectDeser for InvoiceMandateOptionsCard {
98        type Builder = InvoiceMandateOptionsCardBuilder;
99    }
100
101    impl FromValueOpt for InvoiceMandateOptionsCard {
102        fn from_value(v: Value) -> Option<Self> {
103            let Value::Object(obj) = v else {
104                return None;
105            };
106            let mut b = InvoiceMandateOptionsCardBuilder::deser_default();
107            for (k, v) in obj {
108                match k.as_str() {
109                    "amount" => b.amount = FromValueOpt::from_value(v),
110                    "amount_type" => b.amount_type = FromValueOpt::from_value(v),
111                    "description" => b.description = FromValueOpt::from_value(v),
112                    _ => {}
113                }
114            }
115            b.take_out()
116        }
117    }
118};
119/// One of `fixed` or `maximum`.
120/// If `fixed`, the `amount` param refers to the exact amount to be charged in future payments.
121/// If `maximum`, the amount charged can be up to the value passed for the `amount` param.
122#[derive(Clone, Eq, PartialEq)]
123#[non_exhaustive]
124pub enum InvoiceMandateOptionsCardAmountType {
125    Fixed,
126    Maximum,
127    /// An unrecognized value from Stripe. Should not be used as a request parameter.
128    Unknown(String),
129}
130impl InvoiceMandateOptionsCardAmountType {
131    pub fn as_str(&self) -> &str {
132        use InvoiceMandateOptionsCardAmountType::*;
133        match self {
134            Fixed => "fixed",
135            Maximum => "maximum",
136            Unknown(v) => v,
137        }
138    }
139}
140
141impl std::str::FromStr for InvoiceMandateOptionsCardAmountType {
142    type Err = std::convert::Infallible;
143    fn from_str(s: &str) -> Result<Self, Self::Err> {
144        use InvoiceMandateOptionsCardAmountType::*;
145        match s {
146            "fixed" => Ok(Fixed),
147            "maximum" => Ok(Maximum),
148            v => {
149                tracing::warn!(
150                    "Unknown value '{}' for enum '{}'",
151                    v,
152                    "InvoiceMandateOptionsCardAmountType"
153                );
154                Ok(Unknown(v.to_owned()))
155            }
156        }
157    }
158}
159impl std::fmt::Display for InvoiceMandateOptionsCardAmountType {
160    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
161        f.write_str(self.as_str())
162    }
163}
164
165impl std::fmt::Debug for InvoiceMandateOptionsCardAmountType {
166    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
167        f.write_str(self.as_str())
168    }
169}
170#[cfg(feature = "serialize")]
171impl serde::Serialize for InvoiceMandateOptionsCardAmountType {
172    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
173    where
174        S: serde::Serializer,
175    {
176        serializer.serialize_str(self.as_str())
177    }
178}
179impl miniserde::Deserialize for InvoiceMandateOptionsCardAmountType {
180    fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
181        crate::Place::new(out)
182    }
183}
184
185impl miniserde::de::Visitor for crate::Place<InvoiceMandateOptionsCardAmountType> {
186    fn string(&mut self, s: &str) -> miniserde::Result<()> {
187        use std::str::FromStr;
188        self.out = Some(InvoiceMandateOptionsCardAmountType::from_str(s).expect("infallible"));
189        Ok(())
190    }
191}
192
193stripe_types::impl_from_val_with_from_str!(InvoiceMandateOptionsCardAmountType);
194#[cfg(feature = "deserialize")]
195impl<'de> serde::Deserialize<'de> for InvoiceMandateOptionsCardAmountType {
196    fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
197        use std::str::FromStr;
198        let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
199        Ok(Self::from_str(&s).expect("infallible"))
200    }
201}