pub struct PaymentMethodDetailsNzBankAccount {
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 PaymentMethodDetailsNzBankAccount
impl Clone for PaymentMethodDetailsNzBankAccount
Source§fn clone(&self) -> PaymentMethodDetailsNzBankAccount
fn clone(&self) -> PaymentMethodDetailsNzBankAccount
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 FromValueOpt for PaymentMethodDetailsNzBankAccount
impl FromValueOpt for PaymentMethodDetailsNzBankAccount
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsNzBankAccount
impl RefUnwindSafe for PaymentMethodDetailsNzBankAccount
impl Send for PaymentMethodDetailsNzBankAccount
impl Sync for PaymentMethodDetailsNzBankAccount
impl Unpin for PaymentMethodDetailsNzBankAccount
impl UnwindSafe for PaymentMethodDetailsNzBankAccount
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