pub struct PaymentMethodSepaDebit {
pub bank_code: Option<String>,
pub branch_code: Option<String>,
pub country: Option<String>,
pub fingerprint: Option<String>,
pub generated_from: Option<SepaDebitGeneratedFrom>,
pub last4: Option<String>,
}
Fields§
§bank_code: Option<String>
Bank code of bank associated with the bank account.
branch_code: Option<String>
Branch code of bank associated with the bank account.
country: Option<String>
Two-letter ISO code representing the country the bank account is located in.
fingerprint: Option<String>
Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
generated_from: Option<SepaDebitGeneratedFrom>
Information about the object that generated this PaymentMethod.
last4: Option<String>
Last four characters of the IBAN.
Trait Implementations§
Source§impl Clone for PaymentMethodSepaDebit
impl Clone for PaymentMethodSepaDebit
Source§fn clone(&self) -> PaymentMethodSepaDebit
fn clone(&self) -> PaymentMethodSepaDebit
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 PaymentMethodSepaDebit
impl Debug for PaymentMethodSepaDebit
Source§impl Deserialize for PaymentMethodSepaDebit
impl Deserialize for PaymentMethodSepaDebit
Source§impl FromValueOpt for PaymentMethodSepaDebit
impl FromValueOpt for PaymentMethodSepaDebit
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodSepaDebit
impl RefUnwindSafe for PaymentMethodSepaDebit
impl Send for PaymentMethodSepaDebit
impl Sync for PaymentMethodSepaDebit
impl Unpin for PaymentMethodSepaDebit
impl UnwindSafe for PaymentMethodSepaDebit
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