pub struct UpdateInvoicePaymentSettingsPaymentMethodOptionsCard {
pub installments: Option<UpdateInvoicePaymentSettingsPaymentMethodOptionsCardInstallments>,
pub request_three_d_secure: Option<UpdateInvoicePaymentSettingsPaymentMethodOptionsCardRequestThreeDSecure>,
}
Expand description
If paying by card
, this sub-hash contains details about the Card payment method options to pass to the invoice’s PaymentIntent.
Fields§
§installments: Option<UpdateInvoicePaymentSettingsPaymentMethodOptionsCardInstallments>
Installment configuration for payments attempted on this invoice.
For more information, see the installments integration guide.
request_three_d_secure: Option<UpdateInvoicePaymentSettingsPaymentMethodOptionsCardRequestThreeDSecure>
We strongly recommend that you rely on our SCA Engine to automatically prompt your customers for authentication based on risk level and other requirements. However, if you wish to request 3D Secure based on logic from your own fraud engine, provide this option. Read our guide on manually requesting 3D Secure for more information on how this configuration interacts with Radar and our SCA Engine.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
impl Clone for UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
Source§fn clone(&self) -> UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
fn clone(&self) -> UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
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 moreimpl Copy for UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
Auto Trait Implementations§
impl Freeze for UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
impl RefUnwindSafe for UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
impl Send for UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
impl Sync for UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
impl Unpin for UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
impl UnwindSafe for UpdateInvoicePaymentSettingsPaymentMethodOptionsCard
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