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 copy 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 Default for PaymentMethodDetailsBacsDebit
impl Default for PaymentMethodDetailsBacsDebit
source§fn default() -> PaymentMethodDetailsBacsDebit
fn default() -> PaymentMethodDetailsBacsDebit
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PaymentMethodDetailsBacsDebit
impl<'de> Deserialize<'de> for PaymentMethodDetailsBacsDebit
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more