pub struct PaymentMethodDetailsGiropay {
pub bank_code: Option<String>,
pub bank_name: Option<String>,
pub bic: Option<String>,
pub verified_name: Option<String>,
}
Fields§
§bank_code: Option<String>
Bank code of bank associated with the bank account.
bank_name: Option<String>
Name of the bank associated with the bank account.
bic: Option<String>
Bank Identifier Code of the bank associated with the bank account.
verified_name: Option<String>
Owner’s verified full name. Values are verified or provided by Giropay directly (if supported) at the time of authorization or settlement. They cannot be set or mutated. Giropay rarely provides this information so the attribute is usually empty.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsGiropay
impl Clone for PaymentMethodDetailsGiropay
Source§fn clone(&self) -> PaymentMethodDetailsGiropay
fn clone(&self) -> PaymentMethodDetailsGiropay
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 Debug for PaymentMethodDetailsGiropay
impl Debug for PaymentMethodDetailsGiropay
Source§impl FromValueOpt for PaymentMethodDetailsGiropay
impl FromValueOpt for PaymentMethodDetailsGiropay
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsGiropay
impl RefUnwindSafe for PaymentMethodDetailsGiropay
impl Send for PaymentMethodDetailsGiropay
impl Sync for PaymentMethodDetailsGiropay
impl Unpin for PaymentMethodDetailsGiropay
impl UnwindSafe for PaymentMethodDetailsGiropay
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