Skip to main content

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