pub struct PaymentMethodDetailsPaymentRecordUsBankAccount {
pub account_holder_type: Option<PaymentMethodDetailsPaymentRecordUsBankAccountAccountHolderType>,
pub account_type: Option<PaymentMethodDetailsPaymentRecordUsBankAccountAccountType>,
pub bank_name: Option<String>,
pub expected_debit_date: 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<PaymentMethodDetailsPaymentRecordUsBankAccountAccountHolderType>The type of entity that holds the account. This can be either ‘individual’ or ‘company’.
account_type: Option<PaymentMethodDetailsPaymentRecordUsBankAccountAccountType>The type of the bank account. This can be either ‘checking’ or ‘savings’.
bank_name: Option<String>Name of the bank associated with the bank account.
expected_debit_date: Option<String>Estimated date to debit the customer’s bank account. A date string in YYYY-MM-DD format.
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>The ACH payment reference for this transaction.
routing_number: Option<String>The routing number for the bank account.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsPaymentRecordUsBankAccount
impl Clone for PaymentMethodDetailsPaymentRecordUsBankAccount
Source§fn clone(&self) -> PaymentMethodDetailsPaymentRecordUsBankAccount
fn clone(&self) -> PaymentMethodDetailsPaymentRecordUsBankAccount
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 PaymentMethodDetailsPaymentRecordUsBankAccount
impl FromValueOpt for PaymentMethodDetailsPaymentRecordUsBankAccount
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsPaymentRecordUsBankAccount
impl RefUnwindSafe for PaymentMethodDetailsPaymentRecordUsBankAccount
impl Send for PaymentMethodDetailsPaymentRecordUsBankAccount
impl Sync for PaymentMethodDetailsPaymentRecordUsBankAccount
impl Unpin for PaymentMethodDetailsPaymentRecordUsBankAccount
impl UnwindSafe for PaymentMethodDetailsPaymentRecordUsBankAccount
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