pub struct UpdatePaymentMethodConfigurationPayByBank {
pub display_preference: Option<UpdatePaymentMethodConfigurationPayByBankDisplayPreference>,
}Expand description
Pay by bank is a redirect payment method backed by bank transfers. A customer is redirected to their bank to authorize a bank transfer for a given amount. This removes a lot of the error risks inherent in waiting for the customer to initiate a transfer themselves, and is less expensive than card payments.
Fields§
§display_preference: Option<UpdatePaymentMethodConfigurationPayByBankDisplayPreference>Whether or not the payment method should be displayed.
Implementations§
Trait Implementations§
Source§impl Clone for UpdatePaymentMethodConfigurationPayByBank
impl Clone for UpdatePaymentMethodConfigurationPayByBank
Source§fn clone(&self) -> UpdatePaymentMethodConfigurationPayByBank
fn clone(&self) -> UpdatePaymentMethodConfigurationPayByBank
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 PartialEq for UpdatePaymentMethodConfigurationPayByBank
impl PartialEq for UpdatePaymentMethodConfigurationPayByBank
Source§fn eq(&self, other: &UpdatePaymentMethodConfigurationPayByBank) -> bool
fn eq(&self, other: &UpdatePaymentMethodConfigurationPayByBank) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for UpdatePaymentMethodConfigurationPayByBank
impl StructuralPartialEq for UpdatePaymentMethodConfigurationPayByBank
Auto Trait Implementations§
impl Freeze for UpdatePaymentMethodConfigurationPayByBank
impl RefUnwindSafe for UpdatePaymentMethodConfigurationPayByBank
impl Send for UpdatePaymentMethodConfigurationPayByBank
impl Sync for UpdatePaymentMethodConfigurationPayByBank
impl Unpin for UpdatePaymentMethodConfigurationPayByBank
impl UnsafeUnpin for UpdatePaymentMethodConfigurationPayByBank
impl UnwindSafe for UpdatePaymentMethodConfigurationPayByBank
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