Struct stripe::generated::payment::payment_method::WalletDetails
source · pub struct WalletDetails {
pub amex_express_checkout: Option<WalletAmexExpressCheckout>,
pub apple_pay: Option<WalletApplePay>,
pub dynamic_last4: Option<String>,
pub google_pay: Option<WalletGooglePay>,
pub masterpass: Option<WalletMasterpass>,
pub samsung_pay: Option<WalletSamsungPay>,
pub type_: WalletDetailsType,
pub visa_checkout: Option<WalletVisaCheckout>,
}Fields§
§amex_express_checkout: Option<WalletAmexExpressCheckout>§apple_pay: Option<WalletApplePay>§dynamic_last4: Option<String>(For tokenized numbers only.) The last four digits of the device account number.
google_pay: Option<WalletGooglePay>§masterpass: Option<WalletMasterpass>§samsung_pay: Option<WalletSamsungPay>§type_: WalletDetailsTypeThe type of the card wallet, one of amex_express_checkout, apple_pay, google_pay, masterpass, samsung_pay, or visa_checkout.
An additional hash is included on the Wallet subhash with a name matching this value. It contains additional information specific to the card wallet type.
visa_checkout: Option<WalletVisaCheckout>Trait Implementations§
source§impl Clone for WalletDetails
impl Clone for WalletDetails
source§fn clone(&self) -> WalletDetails
fn clone(&self) -> WalletDetails
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for WalletDetails
impl Debug for WalletDetails
source§impl Default for WalletDetails
impl Default for WalletDetails
source§fn default() -> WalletDetails
fn default() -> WalletDetails
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WalletDetails
impl<'de> Deserialize<'de> for WalletDetails
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more