pub struct PaymentMethodDetailsAchDebit {
pub account_holder_type: Option<PaymentMethodDetailsAchDebitAccountHolderType>,
pub bank_name: Option<String>,
pub country: Option<String>,
pub fingerprint: Option<String>,
pub last4: Option<String>,
pub routing_number: Option<String>,
}
Fields§
§account_holder_type: Option<PaymentMethodDetailsAchDebitAccountHolderType>
Type of entity that holds the account. This can be either individual
or company
.
bank_name: Option<String>
Name of the bank associated with the bank account.
country: Option<String>
Two-letter ISO code representing the country the bank account is located in.
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.
routing_number: Option<String>
Routing transit number of the bank account.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsAchDebit
impl Clone for PaymentMethodDetailsAchDebit
Source§fn clone(&self) -> PaymentMethodDetailsAchDebit
fn clone(&self) -> PaymentMethodDetailsAchDebit
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 Debug for PaymentMethodDetailsAchDebit
impl Debug for PaymentMethodDetailsAchDebit
Source§impl FromValueOpt for PaymentMethodDetailsAchDebit
impl FromValueOpt for PaymentMethodDetailsAchDebit
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsAchDebit
impl RefUnwindSafe for PaymentMethodDetailsAchDebit
impl Send for PaymentMethodDetailsAchDebit
impl Sync for PaymentMethodDetailsAchDebit
impl Unpin for PaymentMethodDetailsAchDebit
impl UnwindSafe for PaymentMethodDetailsAchDebit
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