Skip to main content

stripe_shared/
checkout_affirm_payment_method_options.rs

1#[derive(Clone, Eq, PartialEq)]
2#[cfg_attr(not(feature = "redact-generated-debug"), derive(Debug))]
3#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
4#[cfg_attr(feature = "deserialize", derive(serde::Deserialize))]
5pub struct CheckoutAffirmPaymentMethodOptions {
6    /// Controls when the funds will be captured from the customer's account.
7    pub capture_method: Option<CheckoutAffirmPaymentMethodOptionsCaptureMethod>,
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<CheckoutAffirmPaymentMethodOptionsSetupFutureUsage>,
17}
18#[cfg(feature = "redact-generated-debug")]
19impl std::fmt::Debug for CheckoutAffirmPaymentMethodOptions {
20    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
21        f.debug_struct("CheckoutAffirmPaymentMethodOptions").finish_non_exhaustive()
22    }
23}
24#[doc(hidden)]
25pub struct CheckoutAffirmPaymentMethodOptionsBuilder {
26    capture_method: Option<Option<CheckoutAffirmPaymentMethodOptionsCaptureMethod>>,
27    setup_future_usage: Option<Option<CheckoutAffirmPaymentMethodOptionsSetupFutureUsage>>,
28}
29
30#[allow(
31    unused_variables,
32    irrefutable_let_patterns,
33    clippy::let_unit_value,
34    clippy::match_single_binding,
35    clippy::single_match
36)]
37const _: () = {
38    use miniserde::de::{Map, Visitor};
39    use miniserde::json::Value;
40    use miniserde::{Deserialize, Result, make_place};
41    use stripe_types::miniserde_helpers::FromValueOpt;
42    use stripe_types::{MapBuilder, ObjectDeser};
43
44    make_place!(Place);
45
46    impl Deserialize for CheckoutAffirmPaymentMethodOptions {
47        fn begin(out: &mut Option<Self>) -> &mut dyn Visitor {
48            Place::new(out)
49        }
50    }
51
52    struct Builder<'a> {
53        out: &'a mut Option<CheckoutAffirmPaymentMethodOptions>,
54        builder: CheckoutAffirmPaymentMethodOptionsBuilder,
55    }
56
57    impl Visitor for Place<CheckoutAffirmPaymentMethodOptions> {
58        fn map(&mut self) -> Result<Box<dyn Map + '_>> {
59            Ok(Box::new(Builder {
60                out: &mut self.out,
61                builder: CheckoutAffirmPaymentMethodOptionsBuilder::deser_default(),
62            }))
63        }
64    }
65
66    impl MapBuilder for CheckoutAffirmPaymentMethodOptionsBuilder {
67        type Out = CheckoutAffirmPaymentMethodOptions;
68        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
69            Ok(match k {
70                "capture_method" => Deserialize::begin(&mut self.capture_method),
71                "setup_future_usage" => Deserialize::begin(&mut self.setup_future_usage),
72                _ => <dyn Visitor>::ignore(),
73            })
74        }
75
76        fn deser_default() -> Self {
77            Self {
78                capture_method: Deserialize::default(),
79                setup_future_usage: Deserialize::default(),
80            }
81        }
82
83        fn take_out(&mut self) -> Option<Self::Out> {
84            let (Some(capture_method), Some(setup_future_usage)) =
85                (self.capture_method.take(), self.setup_future_usage.take())
86            else {
87                return None;
88            };
89            Some(Self::Out { capture_method, setup_future_usage })
90        }
91    }
92
93    impl Map for Builder<'_> {
94        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
95            self.builder.key(k)
96        }
97
98        fn finish(&mut self) -> Result<()> {
99            *self.out = self.builder.take_out();
100            Ok(())
101        }
102    }
103
104    impl ObjectDeser for CheckoutAffirmPaymentMethodOptions {
105        type Builder = CheckoutAffirmPaymentMethodOptionsBuilder;
106    }
107
108    impl FromValueOpt for CheckoutAffirmPaymentMethodOptions {
109        fn from_value(v: Value) -> Option<Self> {
110            let Value::Object(obj) = v else {
111                return None;
112            };
113            let mut b = CheckoutAffirmPaymentMethodOptionsBuilder::deser_default();
114            for (k, v) in obj {
115                match k.as_str() {
116                    "capture_method" => b.capture_method = FromValueOpt::from_value(v),
117                    "setup_future_usage" => b.setup_future_usage = FromValueOpt::from_value(v),
118                    _ => {}
119                }
120            }
121            b.take_out()
122        }
123    }
124};
125/// Controls when the funds will be captured from the customer's account.
126#[derive(Clone, Eq, PartialEq)]
127#[non_exhaustive]
128pub enum CheckoutAffirmPaymentMethodOptionsCaptureMethod {
129    Manual,
130    /// An unrecognized value from Stripe. Should not be used as a request parameter.
131    Unknown(String),
132}
133impl CheckoutAffirmPaymentMethodOptionsCaptureMethod {
134    pub fn as_str(&self) -> &str {
135        use CheckoutAffirmPaymentMethodOptionsCaptureMethod::*;
136        match self {
137            Manual => "manual",
138            Unknown(v) => v,
139        }
140    }
141}
142
143impl std::str::FromStr for CheckoutAffirmPaymentMethodOptionsCaptureMethod {
144    type Err = std::convert::Infallible;
145    fn from_str(s: &str) -> Result<Self, Self::Err> {
146        use CheckoutAffirmPaymentMethodOptionsCaptureMethod::*;
147        match s {
148            "manual" => Ok(Manual),
149            v => {
150                tracing::warn!(
151                    "Unknown value '{}' for enum '{}'",
152                    v,
153                    "CheckoutAffirmPaymentMethodOptionsCaptureMethod"
154                );
155                Ok(Unknown(v.to_owned()))
156            }
157        }
158    }
159}
160impl std::fmt::Display for CheckoutAffirmPaymentMethodOptionsCaptureMethod {
161    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
162        f.write_str(self.as_str())
163    }
164}
165
166#[cfg(not(feature = "redact-generated-debug"))]
167impl std::fmt::Debug for CheckoutAffirmPaymentMethodOptionsCaptureMethod {
168    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
169        f.write_str(self.as_str())
170    }
171}
172#[cfg(feature = "redact-generated-debug")]
173impl std::fmt::Debug for CheckoutAffirmPaymentMethodOptionsCaptureMethod {
174    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
175        f.debug_struct(stringify!(CheckoutAffirmPaymentMethodOptionsCaptureMethod))
176            .finish_non_exhaustive()
177    }
178}
179#[cfg(feature = "serialize")]
180impl serde::Serialize for CheckoutAffirmPaymentMethodOptionsCaptureMethod {
181    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
182    where
183        S: serde::Serializer,
184    {
185        serializer.serialize_str(self.as_str())
186    }
187}
188impl miniserde::Deserialize for CheckoutAffirmPaymentMethodOptionsCaptureMethod {
189    fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
190        crate::Place::new(out)
191    }
192}
193
194impl miniserde::de::Visitor for crate::Place<CheckoutAffirmPaymentMethodOptionsCaptureMethod> {
195    fn string(&mut self, s: &str) -> miniserde::Result<()> {
196        use std::str::FromStr;
197        self.out =
198            Some(CheckoutAffirmPaymentMethodOptionsCaptureMethod::from_str(s).expect("infallible"));
199        Ok(())
200    }
201}
202
203stripe_types::impl_from_val_with_from_str!(CheckoutAffirmPaymentMethodOptionsCaptureMethod);
204#[cfg(feature = "deserialize")]
205impl<'de> serde::Deserialize<'de> for CheckoutAffirmPaymentMethodOptionsCaptureMethod {
206    fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
207        use std::str::FromStr;
208        let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
209        Ok(Self::from_str(&s).expect("infallible"))
210    }
211}
212/// Indicates that you intend to make future payments with this PaymentIntent's payment method.
213///
214/// 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.
215/// 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.
216///
217/// 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.
218///
219/// 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).
220#[derive(Clone, Eq, PartialEq)]
221#[non_exhaustive]
222pub enum CheckoutAffirmPaymentMethodOptionsSetupFutureUsage {
223    None,
224    /// An unrecognized value from Stripe. Should not be used as a request parameter.
225    Unknown(String),
226}
227impl CheckoutAffirmPaymentMethodOptionsSetupFutureUsage {
228    pub fn as_str(&self) -> &str {
229        use CheckoutAffirmPaymentMethodOptionsSetupFutureUsage::*;
230        match self {
231            None => "none",
232            Unknown(v) => v,
233        }
234    }
235}
236
237impl std::str::FromStr for CheckoutAffirmPaymentMethodOptionsSetupFutureUsage {
238    type Err = std::convert::Infallible;
239    fn from_str(s: &str) -> Result<Self, Self::Err> {
240        use CheckoutAffirmPaymentMethodOptionsSetupFutureUsage::*;
241        match s {
242            "none" => Ok(None),
243            v => {
244                tracing::warn!(
245                    "Unknown value '{}' for enum '{}'",
246                    v,
247                    "CheckoutAffirmPaymentMethodOptionsSetupFutureUsage"
248                );
249                Ok(Unknown(v.to_owned()))
250            }
251        }
252    }
253}
254impl std::fmt::Display for CheckoutAffirmPaymentMethodOptionsSetupFutureUsage {
255    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
256        f.write_str(self.as_str())
257    }
258}
259
260#[cfg(not(feature = "redact-generated-debug"))]
261impl std::fmt::Debug for CheckoutAffirmPaymentMethodOptionsSetupFutureUsage {
262    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
263        f.write_str(self.as_str())
264    }
265}
266#[cfg(feature = "redact-generated-debug")]
267impl std::fmt::Debug for CheckoutAffirmPaymentMethodOptionsSetupFutureUsage {
268    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
269        f.debug_struct(stringify!(CheckoutAffirmPaymentMethodOptionsSetupFutureUsage))
270            .finish_non_exhaustive()
271    }
272}
273#[cfg(feature = "serialize")]
274impl serde::Serialize for CheckoutAffirmPaymentMethodOptionsSetupFutureUsage {
275    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
276    where
277        S: serde::Serializer,
278    {
279        serializer.serialize_str(self.as_str())
280    }
281}
282impl miniserde::Deserialize for CheckoutAffirmPaymentMethodOptionsSetupFutureUsage {
283    fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
284        crate::Place::new(out)
285    }
286}
287
288impl miniserde::de::Visitor for crate::Place<CheckoutAffirmPaymentMethodOptionsSetupFutureUsage> {
289    fn string(&mut self, s: &str) -> miniserde::Result<()> {
290        use std::str::FromStr;
291        self.out = Some(
292            CheckoutAffirmPaymentMethodOptionsSetupFutureUsage::from_str(s).expect("infallible"),
293        );
294        Ok(())
295    }
296}
297
298stripe_types::impl_from_val_with_from_str!(CheckoutAffirmPaymentMethodOptionsSetupFutureUsage);
299#[cfg(feature = "deserialize")]
300impl<'de> serde::Deserialize<'de> for CheckoutAffirmPaymentMethodOptionsSetupFutureUsage {
301    fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
302        use std::str::FromStr;
303        let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
304        Ok(Self::from_str(&s).expect("infallible"))
305    }
306}