pub struct CreateConfirmationTokenPaymentMethodDataUsBankAccount {
pub account_holder_type: Option<CreateConfirmationTokenPaymentMethodDataUsBankAccountAccountHolderType>,
pub account_number: Option<String>,
pub account_type: Option<CreateConfirmationTokenPaymentMethodDataUsBankAccountAccountType>,
pub financial_connections_account: Option<String>,
pub routing_number: Option<String>,
}Expand description
If this is an us_bank_account PaymentMethod, this hash contains details about the US bank account payment method.
Fields§
§account_holder_type: Option<CreateConfirmationTokenPaymentMethodDataUsBankAccountAccountHolderType>Account holder type: individual or company.
account_number: Option<String>Account number of the bank account.
account_type: Option<CreateConfirmationTokenPaymentMethodDataUsBankAccountAccountType>Account type: checkings or savings. Defaults to checking if omitted.
financial_connections_account: Option<String>The ID of a Financial Connections Account to use as a payment method.
routing_number: Option<String>Routing number of the bank account.
Implementations§
Trait Implementations§
Source§impl Clone for CreateConfirmationTokenPaymentMethodDataUsBankAccount
impl Clone for CreateConfirmationTokenPaymentMethodDataUsBankAccount
Source§fn clone(&self) -> CreateConfirmationTokenPaymentMethodDataUsBankAccount
fn clone(&self) -> CreateConfirmationTokenPaymentMethodDataUsBankAccount
Returns a duplicate 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 PartialEq for CreateConfirmationTokenPaymentMethodDataUsBankAccount
impl PartialEq for CreateConfirmationTokenPaymentMethodDataUsBankAccount
Source§fn eq(
&self,
other: &CreateConfirmationTokenPaymentMethodDataUsBankAccount,
) -> bool
fn eq( &self, other: &CreateConfirmationTokenPaymentMethodDataUsBankAccount, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreateConfirmationTokenPaymentMethodDataUsBankAccount
impl StructuralPartialEq for CreateConfirmationTokenPaymentMethodDataUsBankAccount
Auto Trait Implementations§
impl Freeze for CreateConfirmationTokenPaymentMethodDataUsBankAccount
impl RefUnwindSafe for CreateConfirmationTokenPaymentMethodDataUsBankAccount
impl Send for CreateConfirmationTokenPaymentMethodDataUsBankAccount
impl Sync for CreateConfirmationTokenPaymentMethodDataUsBankAccount
impl Unpin for CreateConfirmationTokenPaymentMethodDataUsBankAccount
impl UnsafeUnpin for CreateConfirmationTokenPaymentMethodDataUsBankAccount
impl UnwindSafe for CreateConfirmationTokenPaymentMethodDataUsBankAccount
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