pub struct PaymentMethodDetailsAuBecsDebit {
pub bsb_number: Option<String>,
pub fingerprint: Option<String>,
pub last4: Option<String>,
pub mandate: Option<String>,
}
Fields§
§bsb_number: Option<String>
Bank-State-Branch number of 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<String>
ID of the mandate used to make this payment.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsAuBecsDebit
impl Clone for PaymentMethodDetailsAuBecsDebit
Source§fn clone(&self) -> PaymentMethodDetailsAuBecsDebit
fn clone(&self) -> PaymentMethodDetailsAuBecsDebit
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 PaymentMethodDetailsAuBecsDebit
impl FromValueOpt for PaymentMethodDetailsAuBecsDebit
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsAuBecsDebit
impl RefUnwindSafe for PaymentMethodDetailsAuBecsDebit
impl Send for PaymentMethodDetailsAuBecsDebit
impl Sync for PaymentMethodDetailsAuBecsDebit
impl Unpin for PaymentMethodDetailsAuBecsDebit
impl UnwindSafe for PaymentMethodDetailsAuBecsDebit
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