pub struct PaymentMethodDetailsPaymentRecordSepaDebit {
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 PaymentMethodDetailsPaymentRecordSepaDebit
impl Clone for PaymentMethodDetailsPaymentRecordSepaDebit
Source§fn clone(&self) -> PaymentMethodDetailsPaymentRecordSepaDebit
fn clone(&self) -> PaymentMethodDetailsPaymentRecordSepaDebit
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 PaymentMethodDetailsPaymentRecordSepaDebit
impl FromValueOpt for PaymentMethodDetailsPaymentRecordSepaDebit
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodDetailsPaymentRecordSepaDebit
impl PartialEq for PaymentMethodDetailsPaymentRecordSepaDebit
Source§fn eq(&self, other: &PaymentMethodDetailsPaymentRecordSepaDebit) -> bool
fn eq(&self, other: &PaymentMethodDetailsPaymentRecordSepaDebit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentMethodDetailsPaymentRecordSepaDebit
impl StructuralPartialEq for PaymentMethodDetailsPaymentRecordSepaDebit
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsPaymentRecordSepaDebit
impl RefUnwindSafe for PaymentMethodDetailsPaymentRecordSepaDebit
impl Send for PaymentMethodDetailsPaymentRecordSepaDebit
impl Sync for PaymentMethodDetailsPaymentRecordSepaDebit
impl Unpin for PaymentMethodDetailsPaymentRecordSepaDebit
impl UnsafeUnpin for PaymentMethodDetailsPaymentRecordSepaDebit
impl UnwindSafe for PaymentMethodDetailsPaymentRecordSepaDebit
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