pub struct PaymentMethodDetailsUsBankAccount {
pub account_holder_type: Option<PaymentMethodDetailsUsBankAccountAccountHolderType>,
pub account_type: Option<PaymentMethodDetailsUsBankAccountAccountType>,
pub bank_name: Option<String>,
pub fingerprint: Option<String>,
pub last4: Option<String>,
pub mandate: Option<Expandable<Mandate>>,
pub payment_reference: Option<String>,
pub routing_number: Option<String>,
}
Fields§
§account_holder_type: Option<PaymentMethodDetailsUsBankAccountAccountHolderType>
Account holder type: individual or company.
account_type: Option<PaymentMethodDetailsUsBankAccountAccountType>
Account type: checkings or savings. Defaults to checking if omitted.
bank_name: Option<String>
Name of the bank associated with the bank account.
fingerprint: Option<String>
Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
last4: Option<String>
Last four digits of the bank account number.
mandate: Option<Expandable<Mandate>>
ID of the mandate used to make this payment.
payment_reference: Option<String>
Reference number to locate ACH payments with customer’s bank.
routing_number: Option<String>
Routing number of the bank account.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsUsBankAccount
impl Clone for PaymentMethodDetailsUsBankAccount
Source§fn clone(&self) -> PaymentMethodDetailsUsBankAccount
fn clone(&self) -> PaymentMethodDetailsUsBankAccount
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 FromValueOpt for PaymentMethodDetailsUsBankAccount
impl FromValueOpt for PaymentMethodDetailsUsBankAccount
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsUsBankAccount
impl RefUnwindSafe for PaymentMethodDetailsUsBankAccount
impl Send for PaymentMethodDetailsUsBankAccount
impl Sync for PaymentMethodDetailsUsBankAccount
impl Unpin for PaymentMethodDetailsUsBankAccount
impl UnwindSafe for PaymentMethodDetailsUsBankAccount
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