pub struct PaymentMethodDetailsBacsDebit {
pub fingerprint: Option<String>,
pub last4: Option<String>,
pub mandate: Option<String>,
pub sort_code: Option<String>,
}
Fields§
§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 digits of the bank account number.
mandate: Option<String>
ID of the mandate used to make this payment.
sort_code: Option<String>
Sort code of the bank account. (e.g., 10-20-30
)
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsBacsDebit
impl Clone for PaymentMethodDetailsBacsDebit
Source§fn clone(&self) -> PaymentMethodDetailsBacsDebit
fn clone(&self) -> PaymentMethodDetailsBacsDebit
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 PaymentMethodDetailsBacsDebit
impl FromValueOpt for PaymentMethodDetailsBacsDebit
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsBacsDebit
impl RefUnwindSafe for PaymentMethodDetailsBacsDebit
impl Send for PaymentMethodDetailsBacsDebit
impl Sync for PaymentMethodDetailsBacsDebit
impl Unpin for PaymentMethodDetailsBacsDebit
impl UnwindSafe for PaymentMethodDetailsBacsDebit
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