stripe_shared/
payment_method_naver_pay.rs

1#[derive(Clone, Debug)]
2#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
3#[cfg_attr(feature = "deserialize", derive(serde::Deserialize))]
4pub struct PaymentMethodNaverPay {
5    /// Uniquely identifies this particular Naver Pay account.
6    /// You can use this attribute to check whether two Naver Pay accounts are the same.
7    pub buyer_id: Option<String>,
8    /// Whether to fund this transaction with Naver Pay points or a card.
9    pub funding: PaymentMethodNaverPayFunding,
10}
11#[doc(hidden)]
12pub struct PaymentMethodNaverPayBuilder {
13    buyer_id: Option<Option<String>>,
14    funding: Option<PaymentMethodNaverPayFunding>,
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 PaymentMethodNaverPay {
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<PaymentMethodNaverPay>,
41        builder: PaymentMethodNaverPayBuilder,
42    }
43
44    impl Visitor for Place<PaymentMethodNaverPay> {
45        fn map(&mut self) -> Result<Box<dyn Map + '_>> {
46            Ok(Box::new(Builder {
47                out: &mut self.out,
48                builder: PaymentMethodNaverPayBuilder::deser_default(),
49            }))
50        }
51    }
52
53    impl MapBuilder for PaymentMethodNaverPayBuilder {
54        type Out = PaymentMethodNaverPay;
55        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
56            Ok(match k {
57                "buyer_id" => Deserialize::begin(&mut self.buyer_id),
58                "funding" => Deserialize::begin(&mut self.funding),
59                _ => <dyn Visitor>::ignore(),
60            })
61        }
62
63        fn deser_default() -> Self {
64            Self { buyer_id: Deserialize::default(), funding: Deserialize::default() }
65        }
66
67        fn take_out(&mut self) -> Option<Self::Out> {
68            let (Some(buyer_id), Some(funding)) = (self.buyer_id.take(), self.funding) else {
69                return None;
70            };
71            Some(Self::Out { buyer_id, funding })
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 PaymentMethodNaverPay {
87        type Builder = PaymentMethodNaverPayBuilder;
88    }
89
90    impl FromValueOpt for PaymentMethodNaverPay {
91        fn from_value(v: Value) -> Option<Self> {
92            let Value::Object(obj) = v else {
93                return None;
94            };
95            let mut b = PaymentMethodNaverPayBuilder::deser_default();
96            for (k, v) in obj {
97                match k.as_str() {
98                    "buyer_id" => b.buyer_id = FromValueOpt::from_value(v),
99                    "funding" => b.funding = FromValueOpt::from_value(v),
100                    _ => {}
101                }
102            }
103            b.take_out()
104        }
105    }
106};
107/// Whether to fund this transaction with Naver Pay points or a card.
108#[derive(Copy, Clone, Eq, PartialEq)]
109pub enum PaymentMethodNaverPayFunding {
110    Card,
111    Points,
112}
113impl PaymentMethodNaverPayFunding {
114    pub fn as_str(self) -> &'static str {
115        use PaymentMethodNaverPayFunding::*;
116        match self {
117            Card => "card",
118            Points => "points",
119        }
120    }
121}
122
123impl std::str::FromStr for PaymentMethodNaverPayFunding {
124    type Err = stripe_types::StripeParseError;
125    fn from_str(s: &str) -> Result<Self, Self::Err> {
126        use PaymentMethodNaverPayFunding::*;
127        match s {
128            "card" => Ok(Card),
129            "points" => Ok(Points),
130            _ => Err(stripe_types::StripeParseError),
131        }
132    }
133}
134impl std::fmt::Display for PaymentMethodNaverPayFunding {
135    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
136        f.write_str(self.as_str())
137    }
138}
139
140impl std::fmt::Debug for PaymentMethodNaverPayFunding {
141    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
142        f.write_str(self.as_str())
143    }
144}
145#[cfg(feature = "serialize")]
146impl serde::Serialize for PaymentMethodNaverPayFunding {
147    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
148    where
149        S: serde::Serializer,
150    {
151        serializer.serialize_str(self.as_str())
152    }
153}
154impl miniserde::Deserialize for PaymentMethodNaverPayFunding {
155    fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
156        crate::Place::new(out)
157    }
158}
159
160impl miniserde::de::Visitor for crate::Place<PaymentMethodNaverPayFunding> {
161    fn string(&mut self, s: &str) -> miniserde::Result<()> {
162        use std::str::FromStr;
163        self.out = Some(PaymentMethodNaverPayFunding::from_str(s).map_err(|_| miniserde::Error)?);
164        Ok(())
165    }
166}
167
168stripe_types::impl_from_val_with_from_str!(PaymentMethodNaverPayFunding);
169#[cfg(feature = "deserialize")]
170impl<'de> serde::Deserialize<'de> for PaymentMethodNaverPayFunding {
171    fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
172        use std::str::FromStr;
173        let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
174        Self::from_str(&s)
175            .map_err(|_| serde::de::Error::custom("Unknown value for PaymentMethodNaverPayFunding"))
176    }
177}