stripe_shared/
checkout_boleto_payment_method_options.rs

1#[derive(Copy, Clone, Debug)]
2#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
3#[cfg_attr(feature = "deserialize", derive(serde::Deserialize))]
4pub struct CheckoutBoletoPaymentMethodOptions {
5    /// The number of calendar days before a Boleto voucher expires.
6    /// For example, if you create a Boleto voucher on Monday and you set expires_after_days to 2, the Boleto voucher will expire on Wednesday at 23:59 America/Sao_Paulo 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<CheckoutBoletoPaymentMethodOptionsSetupFutureUsage>,
17}
18#[doc(hidden)]
19pub struct CheckoutBoletoPaymentMethodOptionsBuilder {
20    expires_after_days: Option<u32>,
21    setup_future_usage: Option<Option<CheckoutBoletoPaymentMethodOptionsSetupFutureUsage>>,
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::{Deserialize, Result, make_place};
35    use stripe_types::miniserde_helpers::FromValueOpt;
36    use stripe_types::{MapBuilder, ObjectDeser};
37
38    make_place!(Place);
39
40    impl Deserialize for CheckoutBoletoPaymentMethodOptions {
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<CheckoutBoletoPaymentMethodOptions>,
48        builder: CheckoutBoletoPaymentMethodOptionsBuilder,
49    }
50
51    impl Visitor for Place<CheckoutBoletoPaymentMethodOptions> {
52        fn map(&mut self) -> Result<Box<dyn Map + '_>> {
53            Ok(Box::new(Builder {
54                out: &mut self.out,
55                builder: CheckoutBoletoPaymentMethodOptionsBuilder::deser_default(),
56            }))
57        }
58    }
59
60    impl MapBuilder for CheckoutBoletoPaymentMethodOptionsBuilder {
61        type Out = CheckoutBoletoPaymentMethodOptions;
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                _ => <dyn Visitor>::ignore(),
67            })
68        }
69
70        fn deser_default() -> Self {
71            Self {
72                expires_after_days: Deserialize::default(),
73                setup_future_usage: Deserialize::default(),
74            }
75        }
76
77        fn take_out(&mut self) -> Option<Self::Out> {
78            let (Some(expires_after_days), Some(setup_future_usage)) =
79                (self.expires_after_days, self.setup_future_usage)
80            else {
81                return None;
82            };
83            Some(Self::Out { expires_after_days, setup_future_usage })
84        }
85    }
86
87    impl Map for Builder<'_> {
88        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
89            self.builder.key(k)
90        }
91
92        fn finish(&mut self) -> Result<()> {
93            *self.out = self.builder.take_out();
94            Ok(())
95        }
96    }
97
98    impl ObjectDeser for CheckoutBoletoPaymentMethodOptions {
99        type Builder = CheckoutBoletoPaymentMethodOptionsBuilder;
100    }
101
102    impl FromValueOpt for CheckoutBoletoPaymentMethodOptions {
103        fn from_value(v: Value) -> Option<Self> {
104            let Value::Object(obj) = v else {
105                return None;
106            };
107            let mut b = CheckoutBoletoPaymentMethodOptionsBuilder::deser_default();
108            for (k, v) in obj {
109                match k.as_str() {
110                    "expires_after_days" => b.expires_after_days = FromValueOpt::from_value(v),
111                    "setup_future_usage" => b.setup_future_usage = FromValueOpt::from_value(v),
112                    _ => {}
113                }
114            }
115            b.take_out()
116        }
117    }
118};
119/// Indicates that you intend to make future payments with this PaymentIntent's payment method.
120///
121/// 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.
122/// 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.
123///
124/// 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.
125///
126/// 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).
127#[derive(Copy, Clone, Eq, PartialEq)]
128pub enum CheckoutBoletoPaymentMethodOptionsSetupFutureUsage {
129    None,
130    OffSession,
131    OnSession,
132}
133impl CheckoutBoletoPaymentMethodOptionsSetupFutureUsage {
134    pub fn as_str(self) -> &'static str {
135        use CheckoutBoletoPaymentMethodOptionsSetupFutureUsage::*;
136        match self {
137            None => "none",
138            OffSession => "off_session",
139            OnSession => "on_session",
140        }
141    }
142}
143
144impl std::str::FromStr for CheckoutBoletoPaymentMethodOptionsSetupFutureUsage {
145    type Err = stripe_types::StripeParseError;
146    fn from_str(s: &str) -> Result<Self, Self::Err> {
147        use CheckoutBoletoPaymentMethodOptionsSetupFutureUsage::*;
148        match s {
149            "none" => Ok(None),
150            "off_session" => Ok(OffSession),
151            "on_session" => Ok(OnSession),
152            _ => Err(stripe_types::StripeParseError),
153        }
154    }
155}
156impl std::fmt::Display for CheckoutBoletoPaymentMethodOptionsSetupFutureUsage {
157    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
158        f.write_str(self.as_str())
159    }
160}
161
162impl std::fmt::Debug for CheckoutBoletoPaymentMethodOptionsSetupFutureUsage {
163    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
164        f.write_str(self.as_str())
165    }
166}
167#[cfg(feature = "serialize")]
168impl serde::Serialize for CheckoutBoletoPaymentMethodOptionsSetupFutureUsage {
169    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
170    where
171        S: serde::Serializer,
172    {
173        serializer.serialize_str(self.as_str())
174    }
175}
176impl miniserde::Deserialize for CheckoutBoletoPaymentMethodOptionsSetupFutureUsage {
177    fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
178        crate::Place::new(out)
179    }
180}
181
182impl miniserde::de::Visitor for crate::Place<CheckoutBoletoPaymentMethodOptionsSetupFutureUsage> {
183    fn string(&mut self, s: &str) -> miniserde::Result<()> {
184        use std::str::FromStr;
185        self.out = Some(
186            CheckoutBoletoPaymentMethodOptionsSetupFutureUsage::from_str(s)
187                .map_err(|_| miniserde::Error)?,
188        );
189        Ok(())
190    }
191}
192
193stripe_types::impl_from_val_with_from_str!(CheckoutBoletoPaymentMethodOptionsSetupFutureUsage);
194#[cfg(feature = "deserialize")]
195impl<'de> serde::Deserialize<'de> for CheckoutBoletoPaymentMethodOptionsSetupFutureUsage {
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        Self::from_str(&s).map_err(|_| {
200            serde::de::Error::custom(
201                "Unknown value for CheckoutBoletoPaymentMethodOptionsSetupFutureUsage",
202            )
203        })
204    }
205}