#[derive(Clone, Eq, PartialEq)]
#[cfg_attr(not(feature = "redact-generated-debug"), derive(Debug))]
#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
#[cfg_attr(feature = "deserialize", derive(serde::Deserialize))]
pub struct PaymentMethodDetailsPassthroughCard {
pub brand: Option<String>,
pub country: Option<String>,
pub exp_month: Option<i64>,
pub exp_year: Option<i64>,
pub funding: Option<String>,
pub last4: Option<String>,
}
#[cfg(feature = "redact-generated-debug")]
impl std::fmt::Debug for PaymentMethodDetailsPassthroughCard {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
f.debug_struct("PaymentMethodDetailsPassthroughCard").finish_non_exhaustive()
}
}
#[doc(hidden)]
pub struct PaymentMethodDetailsPassthroughCardBuilder {
brand: Option<Option<String>>,
country: Option<Option<String>>,
exp_month: Option<Option<i64>>,
exp_year: Option<Option<i64>>,
funding: Option<Option<String>>,
last4: Option<Option<String>>,
}
#[allow(
unused_variables,
irrefutable_let_patterns,
clippy::let_unit_value,
clippy::match_single_binding,
clippy::single_match
)]
const _: () = {
use miniserde::de::{Map, Visitor};
use miniserde::json::Value;
use miniserde::{Deserialize, Result, make_place};
use stripe_types::miniserde_helpers::FromValueOpt;
use stripe_types::{MapBuilder, ObjectDeser};
make_place!(Place);
impl Deserialize for PaymentMethodDetailsPassthroughCard {
fn begin(out: &mut Option<Self>) -> &mut dyn Visitor {
Place::new(out)
}
}
struct Builder<'a> {
out: &'a mut Option<PaymentMethodDetailsPassthroughCard>,
builder: PaymentMethodDetailsPassthroughCardBuilder,
}
impl Visitor for Place<PaymentMethodDetailsPassthroughCard> {
fn map(&mut self) -> Result<Box<dyn Map + '_>> {
Ok(Box::new(Builder {
out: &mut self.out,
builder: PaymentMethodDetailsPassthroughCardBuilder::deser_default(),
}))
}
}
impl MapBuilder for PaymentMethodDetailsPassthroughCardBuilder {
type Out = PaymentMethodDetailsPassthroughCard;
fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
Ok(match k {
"brand" => Deserialize::begin(&mut self.brand),
"country" => Deserialize::begin(&mut self.country),
"exp_month" => Deserialize::begin(&mut self.exp_month),
"exp_year" => Deserialize::begin(&mut self.exp_year),
"funding" => Deserialize::begin(&mut self.funding),
"last4" => Deserialize::begin(&mut self.last4),
_ => <dyn Visitor>::ignore(),
})
}
fn deser_default() -> Self {
Self {
brand: Some(None),
country: Some(None),
exp_month: Some(None),
exp_year: Some(None),
funding: Some(None),
last4: Some(None),
}
}
fn take_out(&mut self) -> Option<Self::Out> {
let (
Some(brand),
Some(country),
Some(exp_month),
Some(exp_year),
Some(funding),
Some(last4),
) = (
self.brand.take(),
self.country.take(),
self.exp_month,
self.exp_year,
self.funding.take(),
self.last4.take(),
)
else {
return None;
};
Some(Self::Out { brand, country, exp_month, exp_year, funding, last4 })
}
}
impl Map for Builder<'_> {
fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
self.builder.key(k)
}
fn finish(&mut self) -> Result<()> {
*self.out = self.builder.take_out();
Ok(())
}
}
impl ObjectDeser for PaymentMethodDetailsPassthroughCard {
type Builder = PaymentMethodDetailsPassthroughCardBuilder;
}
impl FromValueOpt for PaymentMethodDetailsPassthroughCard {
fn from_value(v: Value) -> Option<Self> {
let Value::Object(obj) = v else {
return None;
};
let mut b = PaymentMethodDetailsPassthroughCardBuilder::deser_default();
for (k, v) in obj {
match k.as_str() {
"brand" => b.brand = FromValueOpt::from_value(v),
"country" => b.country = FromValueOpt::from_value(v),
"exp_month" => b.exp_month = FromValueOpt::from_value(v),
"exp_year" => b.exp_year = FromValueOpt::from_value(v),
"funding" => b.funding = FromValueOpt::from_value(v),
"last4" => b.last4 = FromValueOpt::from_value(v),
_ => {}
}
}
b.take_out()
}
}
};