pub struct PaymentMethodDetailsSepaDebit {
pub bank_code: Option<String>,
pub branch_code: Option<String>,
pub country: Option<String>,
pub expected_debit_date: 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.
expected_debit_date: Option<String>Estimated date to debit the customer’s bank account. A date string in YYYY-MM-DD format.
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 (const: unstable) · 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>
Source§impl PartialEq for PaymentMethodDetailsSepaDebit
impl PartialEq for PaymentMethodDetailsSepaDebit
Source§fn eq(&self, other: &PaymentMethodDetailsSepaDebit) -> bool
fn eq(&self, other: &PaymentMethodDetailsSepaDebit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentMethodDetailsSepaDebit
impl StructuralPartialEq for PaymentMethodDetailsSepaDebit
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsSepaDebit
impl RefUnwindSafe for PaymentMethodDetailsSepaDebit
impl Send for PaymentMethodDetailsSepaDebit
impl Sync for PaymentMethodDetailsSepaDebit
impl Unpin for PaymentMethodDetailsSepaDebit
impl UnsafeUnpin 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