pub struct CreatePaymentIntentPaymentMethodDataPayto {
pub account_number: Option<String>,
pub bsb_number: Option<String>,
pub pay_id: Option<String>,
}Expand description
If this is a payto PaymentMethod, this hash contains details about the PayTo payment method.
Fields§
§account_number: Option<String>The account number for the bank account.
bsb_number: Option<String>Bank-State-Branch number of the bank account.
pay_id: Option<String>The PayID alias for the bank account.
Implementations§
Trait Implementations§
Source§impl Clone for CreatePaymentIntentPaymentMethodDataPayto
impl Clone for CreatePaymentIntentPaymentMethodDataPayto
Source§fn clone(&self) -> CreatePaymentIntentPaymentMethodDataPayto
fn clone(&self) -> CreatePaymentIntentPaymentMethodDataPayto
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 moreAuto Trait Implementations§
impl Freeze for CreatePaymentIntentPaymentMethodDataPayto
impl RefUnwindSafe for CreatePaymentIntentPaymentMethodDataPayto
impl Send for CreatePaymentIntentPaymentMethodDataPayto
impl Sync for CreatePaymentIntentPaymentMethodDataPayto
impl Unpin for CreatePaymentIntentPaymentMethodDataPayto
impl UnwindSafe for CreatePaymentIntentPaymentMethodDataPayto
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