pub struct PaymentMethodDetailsPaymentRecordAcssDebit {
pub bank_name: Option<String>,
pub expected_debit_date: 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.
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.
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 PaymentMethodDetailsPaymentRecordAcssDebit
impl Clone for PaymentMethodDetailsPaymentRecordAcssDebit
Source§fn clone(&self) -> PaymentMethodDetailsPaymentRecordAcssDebit
fn clone(&self) -> PaymentMethodDetailsPaymentRecordAcssDebit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PaymentMethodDetailsPaymentRecordAcssDebit
impl FromValueOpt for PaymentMethodDetailsPaymentRecordAcssDebit
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodDetailsPaymentRecordAcssDebit
impl PartialEq for PaymentMethodDetailsPaymentRecordAcssDebit
Source§fn eq(&self, other: &PaymentMethodDetailsPaymentRecordAcssDebit) -> bool
fn eq(&self, other: &PaymentMethodDetailsPaymentRecordAcssDebit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentMethodDetailsPaymentRecordAcssDebit
impl StructuralPartialEq for PaymentMethodDetailsPaymentRecordAcssDebit
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsPaymentRecordAcssDebit
impl RefUnwindSafe for PaymentMethodDetailsPaymentRecordAcssDebit
impl Send for PaymentMethodDetailsPaymentRecordAcssDebit
impl Sync for PaymentMethodDetailsPaymentRecordAcssDebit
impl Unpin for PaymentMethodDetailsPaymentRecordAcssDebit
impl UnsafeUnpin for PaymentMethodDetailsPaymentRecordAcssDebit
impl UnwindSafe for PaymentMethodDetailsPaymentRecordAcssDebit
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