pub struct PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails {
pub account_holder_type: Option<PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetailsAccountHolderType>,
pub account_type: Option<PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetailsAccountType>,
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>,
}Expand description
Details of the US Bank Account used for this payment attempt.
Fields§
§account_holder_type: Option<PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetailsAccountHolderType>§account_type: Option<PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetailsAccountType>§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 PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
impl Clone for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
Source§fn clone(
&self,
) -> PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
fn clone( &self, ) -> PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
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 Deserialize for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
impl Deserialize for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
Source§impl FromValueOpt for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
impl FromValueOpt for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
impl RefUnwindSafe for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
impl Send for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
impl Sync for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
impl Unpin for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
impl UnwindSafe for PaymentsPrimitivesPaymentRecordsResourcePaymentMethodUsBankAccountDetails
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