pub struct PaymentMethodAcssDebit {
pub bank_name: Option<String>,
pub fingerprint: Option<String>,
pub institution_number: Option<String>,
pub last4: Option<String>,
pub transit_number: Option<String>,
}
Fields§
§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.
institution_number: Option<String>
Institution number of the bank account.
last4: Option<String>
Last four digits of the bank account number.
transit_number: Option<String>
Transit number of the bank account.
Trait Implementations§
Source§impl Clone for PaymentMethodAcssDebit
impl Clone for PaymentMethodAcssDebit
Source§fn clone(&self) -> PaymentMethodAcssDebit
fn clone(&self) -> PaymentMethodAcssDebit
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 PaymentMethodAcssDebit
impl Debug for PaymentMethodAcssDebit
Source§impl Deserialize for PaymentMethodAcssDebit
impl Deserialize for PaymentMethodAcssDebit
Source§impl FromValueOpt for PaymentMethodAcssDebit
impl FromValueOpt for PaymentMethodAcssDebit
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodAcssDebit
impl RefUnwindSafe for PaymentMethodAcssDebit
impl Send for PaymentMethodAcssDebit
impl Sync for PaymentMethodAcssDebit
impl Unpin for PaymentMethodAcssDebit
impl UnwindSafe for PaymentMethodAcssDebit
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