stripe_shared/
payment_pages_checkout_session_custom_fields_label.rs1#[derive(Clone, Debug)]
2#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
3#[cfg_attr(feature = "deserialize", derive(serde::Deserialize))]
4pub struct PaymentPagesCheckoutSessionCustomFieldsLabel {
5 pub custom: Option<String>,
7 #[cfg_attr(any(feature = "deserialize", feature = "serialize"), serde(rename = "type"))]
9 pub type_: PaymentPagesCheckoutSessionCustomFieldsLabelType,
10}
11#[doc(hidden)]
12pub struct PaymentPagesCheckoutSessionCustomFieldsLabelBuilder {
13 custom: Option<Option<String>>,
14 type_: Option<PaymentPagesCheckoutSessionCustomFieldsLabelType>,
15}
16
17#[allow(
18 unused_variables,
19 irrefutable_let_patterns,
20 clippy::let_unit_value,
21 clippy::match_single_binding,
22 clippy::single_match
23)]
24const _: () = {
25 use miniserde::de::{Map, Visitor};
26 use miniserde::json::Value;
27 use miniserde::{Deserialize, Result, make_place};
28 use stripe_types::miniserde_helpers::FromValueOpt;
29 use stripe_types::{MapBuilder, ObjectDeser};
30
31 make_place!(Place);
32
33 impl Deserialize for PaymentPagesCheckoutSessionCustomFieldsLabel {
34 fn begin(out: &mut Option<Self>) -> &mut dyn Visitor {
35 Place::new(out)
36 }
37 }
38
39 struct Builder<'a> {
40 out: &'a mut Option<PaymentPagesCheckoutSessionCustomFieldsLabel>,
41 builder: PaymentPagesCheckoutSessionCustomFieldsLabelBuilder,
42 }
43
44 impl Visitor for Place<PaymentPagesCheckoutSessionCustomFieldsLabel> {
45 fn map(&mut self) -> Result<Box<dyn Map + '_>> {
46 Ok(Box::new(Builder {
47 out: &mut self.out,
48 builder: PaymentPagesCheckoutSessionCustomFieldsLabelBuilder::deser_default(),
49 }))
50 }
51 }
52
53 impl MapBuilder for PaymentPagesCheckoutSessionCustomFieldsLabelBuilder {
54 type Out = PaymentPagesCheckoutSessionCustomFieldsLabel;
55 fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
56 Ok(match k {
57 "custom" => Deserialize::begin(&mut self.custom),
58 "type" => Deserialize::begin(&mut self.type_),
59 _ => <dyn Visitor>::ignore(),
60 })
61 }
62
63 fn deser_default() -> Self {
64 Self { custom: Deserialize::default(), type_: Deserialize::default() }
65 }
66
67 fn take_out(&mut self) -> Option<Self::Out> {
68 let (Some(custom), Some(type_)) = (self.custom.take(), self.type_.take()) else {
69 return None;
70 };
71 Some(Self::Out { custom, type_ })
72 }
73 }
74
75 impl Map for Builder<'_> {
76 fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
77 self.builder.key(k)
78 }
79
80 fn finish(&mut self) -> Result<()> {
81 *self.out = self.builder.take_out();
82 Ok(())
83 }
84 }
85
86 impl ObjectDeser for PaymentPagesCheckoutSessionCustomFieldsLabel {
87 type Builder = PaymentPagesCheckoutSessionCustomFieldsLabelBuilder;
88 }
89
90 impl FromValueOpt for PaymentPagesCheckoutSessionCustomFieldsLabel {
91 fn from_value(v: Value) -> Option<Self> {
92 let Value::Object(obj) = v else {
93 return None;
94 };
95 let mut b = PaymentPagesCheckoutSessionCustomFieldsLabelBuilder::deser_default();
96 for (k, v) in obj {
97 match k.as_str() {
98 "custom" => b.custom = FromValueOpt::from_value(v),
99 "type" => b.type_ = FromValueOpt::from_value(v),
100 _ => {}
101 }
102 }
103 b.take_out()
104 }
105 }
106};
107#[derive(Clone, Eq, PartialEq)]
109#[non_exhaustive]
110pub enum PaymentPagesCheckoutSessionCustomFieldsLabelType {
111 Custom,
112 Unknown(String),
114}
115impl PaymentPagesCheckoutSessionCustomFieldsLabelType {
116 pub fn as_str(&self) -> &str {
117 use PaymentPagesCheckoutSessionCustomFieldsLabelType::*;
118 match self {
119 Custom => "custom",
120 Unknown(v) => v,
121 }
122 }
123}
124
125impl std::str::FromStr for PaymentPagesCheckoutSessionCustomFieldsLabelType {
126 type Err = std::convert::Infallible;
127 fn from_str(s: &str) -> Result<Self, Self::Err> {
128 use PaymentPagesCheckoutSessionCustomFieldsLabelType::*;
129 match s {
130 "custom" => Ok(Custom),
131 v => {
132 tracing::warn!(
133 "Unknown value '{}' for enum '{}'",
134 v,
135 "PaymentPagesCheckoutSessionCustomFieldsLabelType"
136 );
137 Ok(Unknown(v.to_owned()))
138 }
139 }
140 }
141}
142impl std::fmt::Display for PaymentPagesCheckoutSessionCustomFieldsLabelType {
143 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
144 f.write_str(self.as_str())
145 }
146}
147
148impl std::fmt::Debug for PaymentPagesCheckoutSessionCustomFieldsLabelType {
149 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
150 f.write_str(self.as_str())
151 }
152}
153#[cfg(feature = "serialize")]
154impl serde::Serialize for PaymentPagesCheckoutSessionCustomFieldsLabelType {
155 fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
156 where
157 S: serde::Serializer,
158 {
159 serializer.serialize_str(self.as_str())
160 }
161}
162impl miniserde::Deserialize for PaymentPagesCheckoutSessionCustomFieldsLabelType {
163 fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
164 crate::Place::new(out)
165 }
166}
167
168impl miniserde::de::Visitor for crate::Place<PaymentPagesCheckoutSessionCustomFieldsLabelType> {
169 fn string(&mut self, s: &str) -> miniserde::Result<()> {
170 use std::str::FromStr;
171 self.out = Some(
172 PaymentPagesCheckoutSessionCustomFieldsLabelType::from_str(s).expect("infallible"),
173 );
174 Ok(())
175 }
176}
177
178stripe_types::impl_from_val_with_from_str!(PaymentPagesCheckoutSessionCustomFieldsLabelType);
179#[cfg(feature = "deserialize")]
180impl<'de> serde::Deserialize<'de> for PaymentPagesCheckoutSessionCustomFieldsLabelType {
181 fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
182 use std::str::FromStr;
183 let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
184 Ok(Self::from_str(&s).expect("infallible"))
185 }
186}