pub struct PaymentMethodNzBankAccount {
pub account_holder_name: Option<String>,
pub bank_code: String,
pub bank_name: String,
pub branch_code: String,
pub last4: String,
pub suffix: Option<String>,
}
Fields§
§account_holder_name: Option<String>
The name on the bank account. Only present if the account holder name is different from the name of the authorized signatory collected in the PaymentMethod’s billing details.
bank_code: String
The numeric code for the bank account’s bank.
bank_name: String
The name of the bank.
branch_code: String
The numeric code for the bank account’s bank branch.
last4: String
Last four digits of the bank account number.
suffix: Option<String>
The suffix of the bank account number.
Trait Implementations§
Source§impl Clone for PaymentMethodNzBankAccount
impl Clone for PaymentMethodNzBankAccount
Source§fn clone(&self) -> PaymentMethodNzBankAccount
fn clone(&self) -> PaymentMethodNzBankAccount
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 PaymentMethodNzBankAccount
impl Debug for PaymentMethodNzBankAccount
Source§impl FromValueOpt for PaymentMethodNzBankAccount
impl FromValueOpt for PaymentMethodNzBankAccount
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodNzBankAccount
impl RefUnwindSafe for PaymentMethodNzBankAccount
impl Send for PaymentMethodNzBankAccount
impl Sync for PaymentMethodNzBankAccount
impl Unpin for PaymentMethodNzBankAccount
impl UnwindSafe for PaymentMethodNzBankAccount
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