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::{make_place, Deserialize, Result};
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
60                _ => <dyn Visitor>::ignore(),
61            })
62        }
63
64        fn deser_default() -> Self {
65            Self { buyer_id: Deserialize::default(), funding: Deserialize::default() }
66        }
67
68        fn take_out(&mut self) -> Option<Self::Out> {
69            let (Some(buyer_id), Some(funding)) = (self.buyer_id.take(), self.funding) else {
70                return None;
71            };
72            Some(Self::Out { buyer_id, funding })
73        }
74    }
75
76    impl Map for Builder<'_> {
77        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
78            self.builder.key(k)
79        }
80
81        fn finish(&mut self) -> Result<()> {
82            *self.out = self.builder.take_out();
83            Ok(())
84        }
85    }
86
87    impl ObjectDeser for PaymentMethodNaverPay {
88        type Builder = PaymentMethodNaverPayBuilder;
89    }
90
91    impl FromValueOpt for PaymentMethodNaverPay {
92        fn from_value(v: Value) -> Option<Self> {
93            let Value::Object(obj) = v else {
94                return None;
95            };
96            let mut b = PaymentMethodNaverPayBuilder::deser_default();
97            for (k, v) in obj {
98                match k.as_str() {
99                    "buyer_id" => b.buyer_id = FromValueOpt::from_value(v),
100                    "funding" => b.funding = FromValueOpt::from_value(v),
101
102                    _ => {}
103                }
104            }
105            b.take_out()
106        }
107    }
108};
109/// Whether to fund this transaction with Naver Pay points or a card.
110#[derive(Copy, Clone, Eq, PartialEq)]
111pub enum PaymentMethodNaverPayFunding {
112    Card,
113    Points,
114}
115impl PaymentMethodNaverPayFunding {
116    pub fn as_str(self) -> &'static str {
117        use PaymentMethodNaverPayFunding::*;
118        match self {
119            Card => "card",
120            Points => "points",
121        }
122    }
123}
124
125impl std::str::FromStr for PaymentMethodNaverPayFunding {
126    type Err = stripe_types::StripeParseError;
127    fn from_str(s: &str) -> Result<Self, Self::Err> {
128        use PaymentMethodNaverPayFunding::*;
129        match s {
130            "card" => Ok(Card),
131            "points" => Ok(Points),
132            _ => Err(stripe_types::StripeParseError),
133        }
134    }
135}
136impl std::fmt::Display for PaymentMethodNaverPayFunding {
137    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
138        f.write_str(self.as_str())
139    }
140}
141
142impl std::fmt::Debug for PaymentMethodNaverPayFunding {
143    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
144        f.write_str(self.as_str())
145    }
146}
147#[cfg(feature = "serialize")]
148impl serde::Serialize for PaymentMethodNaverPayFunding {
149    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
150    where
151        S: serde::Serializer,
152    {
153        serializer.serialize_str(self.as_str())
154    }
155}
156impl miniserde::Deserialize for PaymentMethodNaverPayFunding {
157    fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
158        crate::Place::new(out)
159    }
160}
161
162impl miniserde::de::Visitor for crate::Place<PaymentMethodNaverPayFunding> {
163    fn string(&mut self, s: &str) -> miniserde::Result<()> {
164        use std::str::FromStr;
165        self.out = Some(PaymentMethodNaverPayFunding::from_str(s).map_err(|_| miniserde::Error)?);
166        Ok(())
167    }
168}
169
170stripe_types::impl_from_val_with_from_str!(PaymentMethodNaverPayFunding);
171#[cfg(feature = "deserialize")]
172impl<'de> serde::Deserialize<'de> for PaymentMethodNaverPayFunding {
173    fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
174        use std::str::FromStr;
175        let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
176        Self::from_str(&s)
177            .map_err(|_| serde::de::Error::custom("Unknown value for PaymentMethodNaverPayFunding"))
178    }
179}