stripe_shared/
checkout_cashapp_payment_method_options.rs1#[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 CheckoutCashappPaymentMethodOptions {
6 pub capture_method: Option<CheckoutCashappPaymentMethodOptionsCaptureMethod>,
8 pub setup_future_usage: Option<CheckoutCashappPaymentMethodOptionsSetupFutureUsage>,
17}
18#[cfg(feature = "redact-generated-debug")]
19impl std::fmt::Debug for CheckoutCashappPaymentMethodOptions {
20 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
21 f.debug_struct("CheckoutCashappPaymentMethodOptions").finish_non_exhaustive()
22 }
23}
24#[doc(hidden)]
25pub struct CheckoutCashappPaymentMethodOptionsBuilder {
26 capture_method: Option<Option<CheckoutCashappPaymentMethodOptionsCaptureMethod>>,
27 setup_future_usage: Option<Option<CheckoutCashappPaymentMethodOptionsSetupFutureUsage>>,
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 CheckoutCashappPaymentMethodOptions {
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<CheckoutCashappPaymentMethodOptions>,
54 builder: CheckoutCashappPaymentMethodOptionsBuilder,
55 }
56
57 impl Visitor for Place<CheckoutCashappPaymentMethodOptions> {
58 fn map(&mut self) -> Result<Box<dyn Map + '_>> {
59 Ok(Box::new(Builder {
60 out: &mut self.out,
61 builder: CheckoutCashappPaymentMethodOptionsBuilder::deser_default(),
62 }))
63 }
64 }
65
66 impl MapBuilder for CheckoutCashappPaymentMethodOptionsBuilder {
67 type Out = CheckoutCashappPaymentMethodOptions;
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 CheckoutCashappPaymentMethodOptions {
102 type Builder = CheckoutCashappPaymentMethodOptionsBuilder;
103 }
104
105 impl FromValueOpt for CheckoutCashappPaymentMethodOptions {
106 fn from_value(v: Value) -> Option<Self> {
107 let Value::Object(obj) = v else {
108 return None;
109 };
110 let mut b = CheckoutCashappPaymentMethodOptionsBuilder::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#[derive(Clone, Eq, PartialEq)]
124#[non_exhaustive]
125pub enum CheckoutCashappPaymentMethodOptionsCaptureMethod {
126 Manual,
127 Unknown(String),
129}
130impl CheckoutCashappPaymentMethodOptionsCaptureMethod {
131 pub fn as_str(&self) -> &str {
132 use CheckoutCashappPaymentMethodOptionsCaptureMethod::*;
133 match self {
134 Manual => "manual",
135 Unknown(v) => v,
136 }
137 }
138}
139
140impl std::str::FromStr for CheckoutCashappPaymentMethodOptionsCaptureMethod {
141 type Err = std::convert::Infallible;
142 fn from_str(s: &str) -> Result<Self, Self::Err> {
143 use CheckoutCashappPaymentMethodOptionsCaptureMethod::*;
144 match s {
145 "manual" => Ok(Manual),
146 v => {
147 tracing::warn!(
148 "Unknown value '{}' for enum '{}'",
149 v,
150 "CheckoutCashappPaymentMethodOptionsCaptureMethod"
151 );
152 Ok(Unknown(v.to_owned()))
153 }
154 }
155 }
156}
157impl std::fmt::Display for CheckoutCashappPaymentMethodOptionsCaptureMethod {
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 CheckoutCashappPaymentMethodOptionsCaptureMethod {
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 CheckoutCashappPaymentMethodOptionsCaptureMethod {
171 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
172 f.debug_struct(stringify!(CheckoutCashappPaymentMethodOptionsCaptureMethod))
173 .finish_non_exhaustive()
174 }
175}
176#[cfg(feature = "serialize")]
177impl serde::Serialize for CheckoutCashappPaymentMethodOptionsCaptureMethod {
178 fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
179 where
180 S: serde::Serializer,
181 {
182 serializer.serialize_str(self.as_str())
183 }
184}
185impl miniserde::Deserialize for CheckoutCashappPaymentMethodOptionsCaptureMethod {
186 fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
187 crate::Place::new(out)
188 }
189}
190
191impl miniserde::de::Visitor for crate::Place<CheckoutCashappPaymentMethodOptionsCaptureMethod> {
192 fn string(&mut self, s: &str) -> miniserde::Result<()> {
193 use std::str::FromStr;
194 self.out = Some(
195 CheckoutCashappPaymentMethodOptionsCaptureMethod::from_str(s).expect("infallible"),
196 );
197 Ok(())
198 }
199}
200
201stripe_types::impl_from_val_with_from_str!(CheckoutCashappPaymentMethodOptionsCaptureMethod);
202#[cfg(feature = "deserialize")]
203impl<'de> serde::Deserialize<'de> for CheckoutCashappPaymentMethodOptionsCaptureMethod {
204 fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
205 use std::str::FromStr;
206 let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
207 Ok(Self::from_str(&s).expect("infallible"))
208 }
209}
210#[derive(Clone, Eq, PartialEq)]
219#[non_exhaustive]
220pub enum CheckoutCashappPaymentMethodOptionsSetupFutureUsage {
221 None,
222 Unknown(String),
224}
225impl CheckoutCashappPaymentMethodOptionsSetupFutureUsage {
226 pub fn as_str(&self) -> &str {
227 use CheckoutCashappPaymentMethodOptionsSetupFutureUsage::*;
228 match self {
229 None => "none",
230 Unknown(v) => v,
231 }
232 }
233}
234
235impl std::str::FromStr for CheckoutCashappPaymentMethodOptionsSetupFutureUsage {
236 type Err = std::convert::Infallible;
237 fn from_str(s: &str) -> Result<Self, Self::Err> {
238 use CheckoutCashappPaymentMethodOptionsSetupFutureUsage::*;
239 match s {
240 "none" => Ok(None),
241 v => {
242 tracing::warn!(
243 "Unknown value '{}' for enum '{}'",
244 v,
245 "CheckoutCashappPaymentMethodOptionsSetupFutureUsage"
246 );
247 Ok(Unknown(v.to_owned()))
248 }
249 }
250 }
251}
252impl std::fmt::Display for CheckoutCashappPaymentMethodOptionsSetupFutureUsage {
253 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
254 f.write_str(self.as_str())
255 }
256}
257
258#[cfg(not(feature = "redact-generated-debug"))]
259impl std::fmt::Debug for CheckoutCashappPaymentMethodOptionsSetupFutureUsage {
260 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
261 f.write_str(self.as_str())
262 }
263}
264#[cfg(feature = "redact-generated-debug")]
265impl std::fmt::Debug for CheckoutCashappPaymentMethodOptionsSetupFutureUsage {
266 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
267 f.debug_struct(stringify!(CheckoutCashappPaymentMethodOptionsSetupFutureUsage))
268 .finish_non_exhaustive()
269 }
270}
271#[cfg(feature = "serialize")]
272impl serde::Serialize for CheckoutCashappPaymentMethodOptionsSetupFutureUsage {
273 fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
274 where
275 S: serde::Serializer,
276 {
277 serializer.serialize_str(self.as_str())
278 }
279}
280impl miniserde::Deserialize for CheckoutCashappPaymentMethodOptionsSetupFutureUsage {
281 fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
282 crate::Place::new(out)
283 }
284}
285
286impl miniserde::de::Visitor for crate::Place<CheckoutCashappPaymentMethodOptionsSetupFutureUsage> {
287 fn string(&mut self, s: &str) -> miniserde::Result<()> {
288 use std::str::FromStr;
289 self.out = Some(
290 CheckoutCashappPaymentMethodOptionsSetupFutureUsage::from_str(s).expect("infallible"),
291 );
292 Ok(())
293 }
294}
295
296stripe_types::impl_from_val_with_from_str!(CheckoutCashappPaymentMethodOptionsSetupFutureUsage);
297#[cfg(feature = "deserialize")]
298impl<'de> serde::Deserialize<'de> for CheckoutCashappPaymentMethodOptionsSetupFutureUsage {
299 fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
300 use std::str::FromStr;
301 let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
302 Ok(Self::from_str(&s).expect("infallible"))
303 }
304}