pub struct UpdatePaymentIntentPaymentMethodDataPayto {
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 UpdatePaymentIntentPaymentMethodDataPayto
impl Clone for UpdatePaymentIntentPaymentMethodDataPayto
Source§fn clone(&self) -> UpdatePaymentIntentPaymentMethodDataPayto
fn clone(&self) -> UpdatePaymentIntentPaymentMethodDataPayto
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 UpdatePaymentIntentPaymentMethodDataPayto
impl RefUnwindSafe for UpdatePaymentIntentPaymentMethodDataPayto
impl Send for UpdatePaymentIntentPaymentMethodDataPayto
impl Sync for UpdatePaymentIntentPaymentMethodDataPayto
impl Unpin for UpdatePaymentIntentPaymentMethodDataPayto
impl UnwindSafe for UpdatePaymentIntentPaymentMethodDataPayto
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