pub struct PaymentMethodDetailsPayto {
pub bsb_number: Option<String>,
pub last4: Option<String>,
pub mandate: Option<String>,
pub pay_id: Option<String>,
}Fields§
§bsb_number: Option<String>Bank-State-Branch 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.
pay_id: Option<String>The PayID alias for the bank account.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsPayto
impl Clone for PaymentMethodDetailsPayto
Source§fn clone(&self) -> PaymentMethodDetailsPayto
fn clone(&self) -> PaymentMethodDetailsPayto
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 PaymentMethodDetailsPayto
impl Debug for PaymentMethodDetailsPayto
Source§impl FromValueOpt for PaymentMethodDetailsPayto
impl FromValueOpt for PaymentMethodDetailsPayto
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsPayto
impl RefUnwindSafe for PaymentMethodDetailsPayto
impl Send for PaymentMethodDetailsPayto
impl Sync for PaymentMethodDetailsPayto
impl Unpin for PaymentMethodDetailsPayto
impl UnwindSafe for PaymentMethodDetailsPayto
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