#[non_exhaustive]pub enum CreateIssuingAuthorizationWallet {
ApplePay,
GooglePay,
SamsungPay,
Unknown(String),
}Expand description
The digital wallet used for this transaction.
One of apple_pay, google_pay, or samsung_pay.
Will populate as null when no digital wallet was utilized.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ApplePay
GooglePay
SamsungPay
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for CreateIssuingAuthorizationWallet
impl Clone for CreateIssuingAuthorizationWallet
Source§fn clone(&self) -> CreateIssuingAuthorizationWallet
fn clone(&self) -> CreateIssuingAuthorizationWallet
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateIssuingAuthorizationWallet
Available on non-crate feature redact-generated-debug only.
impl Debug for CreateIssuingAuthorizationWallet
Available on non-crate feature
redact-generated-debug only.Source§impl PartialEq for CreateIssuingAuthorizationWallet
impl PartialEq for CreateIssuingAuthorizationWallet
Source§fn eq(&self, other: &CreateIssuingAuthorizationWallet) -> bool
fn eq(&self, other: &CreateIssuingAuthorizationWallet) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreateIssuingAuthorizationWallet
impl StructuralPartialEq for CreateIssuingAuthorizationWallet
Auto Trait Implementations§
impl Freeze for CreateIssuingAuthorizationWallet
impl RefUnwindSafe for CreateIssuingAuthorizationWallet
impl Send for CreateIssuingAuthorizationWallet
impl Sync for CreateIssuingAuthorizationWallet
impl Unpin for CreateIssuingAuthorizationWallet
impl UnsafeUnpin for CreateIssuingAuthorizationWallet
impl UnwindSafe for CreateIssuingAuthorizationWallet
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more