pub struct VaultPaymentMethodApiRequest {
pub customer_id: String,
pub verify: Option<bool>,
}
Fields§
§customer_id: String
The ID representing the customer
verify: Option<bool>
Whether the payment method should be verified before vaulting or not
Trait Implementations§
Source§impl Debug for VaultPaymentMethodApiRequest
impl Debug for VaultPaymentMethodApiRequest
Source§impl Default for VaultPaymentMethodApiRequest
impl Default for VaultPaymentMethodApiRequest
Source§fn default() -> VaultPaymentMethodApiRequest
fn default() -> VaultPaymentMethodApiRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VaultPaymentMethodApiRequest
impl<'de> Deserialize<'de> for VaultPaymentMethodApiRequest
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
Auto Trait Implementations§
impl Freeze for VaultPaymentMethodApiRequest
impl RefUnwindSafe for VaultPaymentMethodApiRequest
impl Send for VaultPaymentMethodApiRequest
impl Sync for VaultPaymentMethodApiRequest
impl Unpin for VaultPaymentMethodApiRequest
impl UnwindSafe for VaultPaymentMethodApiRequest
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