pub struct PaymentMethodDetailsSepaDebit {
pub bank_code: Option<String>,
pub branch_code: Option<String>,
pub country: Option<String>,
pub fingerprint: Option<String>,
pub last4: Option<String>,
pub mandate: 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.
last4: Option<String>
Last four characters of the IBAN.
mandate: Option<String>
Find the ID of the mandate used for this payment under the payment_method_details.sepa_debit.mandate property on the Charge. Use this mandate ID to retrieve the Mandate.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsSepaDebit
impl Clone for PaymentMethodDetailsSepaDebit
Source§fn clone(&self) -> PaymentMethodDetailsSepaDebit
fn clone(&self) -> PaymentMethodDetailsSepaDebit
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 PaymentMethodDetailsSepaDebit
impl FromValueOpt for PaymentMethodDetailsSepaDebit
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsSepaDebit
impl RefUnwindSafe for PaymentMethodDetailsSepaDebit
impl Send for PaymentMethodDetailsSepaDebit
impl Sync for PaymentMethodDetailsSepaDebit
impl Unpin for PaymentMethodDetailsSepaDebit
impl UnwindSafe for PaymentMethodDetailsSepaDebit
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