stripe_shared/
payment_method_options_oxxo.rs

1#[derive(Copy, Clone, Debug)]
2#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
3#[cfg_attr(feature = "deserialize", derive(serde::Deserialize))]
4pub struct PaymentMethodOptionsOxxo {
5    /// The number of calendar days before an OXXO invoice expires.
6    /// For example, if you create an OXXO invoice on Monday and you set expires_after_days to 2, the OXXO invoice will expire on Wednesday at 23:59 America/Mexico_City time.
7    pub expires_after_days: u32,
8    /// Indicates that you intend to make future payments with this PaymentIntent's payment method.
9    ///
10    /// If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions.
11    /// If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
12    ///
13    /// If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
14    ///
15    /// When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
16    pub setup_future_usage: Option<PaymentMethodOptionsOxxoSetupFutureUsage>,
17}
18#[doc(hidden)]
19pub struct PaymentMethodOptionsOxxoBuilder {
20    expires_after_days: Option<u32>,
21    setup_future_usage: Option<Option<PaymentMethodOptionsOxxoSetupFutureUsage>>,
22}
23
24#[allow(
25    unused_variables,
26    irrefutable_let_patterns,
27    clippy::let_unit_value,
28    clippy::match_single_binding,
29    clippy::single_match
30)]
31const _: () = {
32    use miniserde::de::{Map, Visitor};
33    use miniserde::json::Value;
34    use miniserde::{make_place, Deserialize, Result};
35    use stripe_types::miniserde_helpers::FromValueOpt;
36    use stripe_types::{MapBuilder, ObjectDeser};
37
38    make_place!(Place);
39
40    impl Deserialize for PaymentMethodOptionsOxxo {
41        fn begin(out: &mut Option<Self>) -> &mut dyn Visitor {
42            Place::new(out)
43        }
44    }
45
46    struct Builder<'a> {
47        out: &'a mut Option<PaymentMethodOptionsOxxo>,
48        builder: PaymentMethodOptionsOxxoBuilder,
49    }
50
51    impl Visitor for Place<PaymentMethodOptionsOxxo> {
52        fn map(&mut self) -> Result<Box<dyn Map + '_>> {
53            Ok(Box::new(Builder {
54                out: &mut self.out,
55                builder: PaymentMethodOptionsOxxoBuilder::deser_default(),
56            }))
57        }
58    }
59
60    impl MapBuilder for PaymentMethodOptionsOxxoBuilder {
61        type Out = PaymentMethodOptionsOxxo;
62        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
63            Ok(match k {
64                "expires_after_days" => Deserialize::begin(&mut self.expires_after_days),
65                "setup_future_usage" => Deserialize::begin(&mut self.setup_future_usage),
66
67                _ => <dyn Visitor>::ignore(),
68            })
69        }
70
71        fn deser_default() -> Self {
72            Self {
73                expires_after_days: Deserialize::default(),
74                setup_future_usage: Deserialize::default(),
75            }
76        }
77
78        fn take_out(&mut self) -> Option<Self::Out> {
79            let (Some(expires_after_days), Some(setup_future_usage)) =
80                (self.expires_after_days, self.setup_future_usage)
81            else {
82                return None;
83            };
84            Some(Self::Out { expires_after_days, setup_future_usage })
85        }
86    }
87
88    impl<'a> Map for Builder<'a> {
89        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
90            self.builder.key(k)
91        }
92
93        fn finish(&mut self) -> Result<()> {
94            *self.out = self.builder.take_out();
95            Ok(())
96        }
97    }
98
99    impl ObjectDeser for PaymentMethodOptionsOxxo {
100        type Builder = PaymentMethodOptionsOxxoBuilder;
101    }
102
103    impl FromValueOpt for PaymentMethodOptionsOxxo {
104        fn from_value(v: Value) -> Option<Self> {
105            let Value::Object(obj) = v else {
106                return None;
107            };
108            let mut b = PaymentMethodOptionsOxxoBuilder::deser_default();
109            for (k, v) in obj {
110                match k.as_str() {
111                    "expires_after_days" => b.expires_after_days = FromValueOpt::from_value(v),
112                    "setup_future_usage" => b.setup_future_usage = FromValueOpt::from_value(v),
113
114                    _ => {}
115                }
116            }
117            b.take_out()
118        }
119    }
120};
121/// Indicates that you intend to make future payments with this PaymentIntent's payment method.
122///
123/// If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions.
124/// If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
125///
126/// If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
127///
128/// When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
129#[derive(Copy, Clone, Eq, PartialEq)]
130pub enum PaymentMethodOptionsOxxoSetupFutureUsage {
131    None,
132}
133impl PaymentMethodOptionsOxxoSetupFutureUsage {
134    pub fn as_str(self) -> &'static str {
135        use PaymentMethodOptionsOxxoSetupFutureUsage::*;
136        match self {
137            None => "none",
138        }
139    }
140}
141
142impl std::str::FromStr for PaymentMethodOptionsOxxoSetupFutureUsage {
143    type Err = stripe_types::StripeParseError;
144    fn from_str(s: &str) -> Result<Self, Self::Err> {
145        use PaymentMethodOptionsOxxoSetupFutureUsage::*;
146        match s {
147            "none" => Ok(None),
148            _ => Err(stripe_types::StripeParseError),
149        }
150    }
151}
152impl std::fmt::Display for PaymentMethodOptionsOxxoSetupFutureUsage {
153    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
154        f.write_str(self.as_str())
155    }
156}
157
158impl std::fmt::Debug for PaymentMethodOptionsOxxoSetupFutureUsage {
159    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
160        f.write_str(self.as_str())
161    }
162}
163#[cfg(feature = "serialize")]
164impl serde::Serialize for PaymentMethodOptionsOxxoSetupFutureUsage {
165    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
166    where
167        S: serde::Serializer,
168    {
169        serializer.serialize_str(self.as_str())
170    }
171}
172impl miniserde::Deserialize for PaymentMethodOptionsOxxoSetupFutureUsage {
173    fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
174        crate::Place::new(out)
175    }
176}
177
178impl miniserde::de::Visitor for crate::Place<PaymentMethodOptionsOxxoSetupFutureUsage> {
179    fn string(&mut self, s: &str) -> miniserde::Result<()> {
180        use std::str::FromStr;
181        self.out = Some(
182            PaymentMethodOptionsOxxoSetupFutureUsage::from_str(s).map_err(|_| miniserde::Error)?,
183        );
184        Ok(())
185    }
186}
187
188stripe_types::impl_from_val_with_from_str!(PaymentMethodOptionsOxxoSetupFutureUsage);
189#[cfg(feature = "deserialize")]
190impl<'de> serde::Deserialize<'de> for PaymentMethodOptionsOxxoSetupFutureUsage {
191    fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
192        use std::str::FromStr;
193        let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
194        Self::from_str(&s).map_err(|_| {
195            serde::de::Error::custom("Unknown value for PaymentMethodOptionsOxxoSetupFutureUsage")
196        })
197    }
198}