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 (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 PartialEq for CreatePaymentIntentPaymentMethodDataPayto
impl PartialEq for CreatePaymentIntentPaymentMethodDataPayto
Source§fn eq(&self, other: &CreatePaymentIntentPaymentMethodDataPayto) -> bool
fn eq(&self, other: &CreatePaymentIntentPaymentMethodDataPayto) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreatePaymentIntentPaymentMethodDataPayto
impl StructuralPartialEq for CreatePaymentIntentPaymentMethodDataPayto
Auto Trait Implementations§
impl Freeze for CreatePaymentIntentPaymentMethodDataPayto
impl RefUnwindSafe for CreatePaymentIntentPaymentMethodDataPayto
impl Send for CreatePaymentIntentPaymentMethodDataPayto
impl Sync for CreatePaymentIntentPaymentMethodDataPayto
impl Unpin for CreatePaymentIntentPaymentMethodDataPayto
impl UnsafeUnpin 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