pub struct PaymentMethodDetailsAcssDebit {
pub bank_name: Option<String>,
pub fingerprint: Option<String>,
pub institution_number: Option<String>,
pub last4: Option<String>,
pub mandate: 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.
mandate: Option<String>
ID of the mandate used to make this payment.
transit_number: Option<String>
Transit number of the bank account.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsAcssDebit
impl Clone for PaymentMethodDetailsAcssDebit
Source§fn clone(&self) -> PaymentMethodDetailsAcssDebit
fn clone(&self) -> PaymentMethodDetailsAcssDebit
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 PaymentMethodDetailsAcssDebit
impl FromValueOpt for PaymentMethodDetailsAcssDebit
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsAcssDebit
impl RefUnwindSafe for PaymentMethodDetailsAcssDebit
impl Send for PaymentMethodDetailsAcssDebit
impl Sync for PaymentMethodDetailsAcssDebit
impl Unpin for PaymentMethodDetailsAcssDebit
impl UnwindSafe for PaymentMethodDetailsAcssDebit
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