pub struct CreateInvoicePaymentSettingsPaymentMethodOptionsCard {
pub installments: Option<CreateInvoicePaymentSettingsPaymentMethodOptionsCardInstallments>,
pub request_three_d_secure: Option<CreateInvoicePaymentSettingsPaymentMethodOptionsCardRequestThreeDSecure>,
}
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<CreateInvoicePaymentSettingsPaymentMethodOptionsCardInstallments>
Installment configuration for payments attempted on this invoice.
For more information, see the installments integration guide.
request_three_d_secure: Option<CreateInvoicePaymentSettingsPaymentMethodOptionsCardRequestThreeDSecure>
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 CreateInvoicePaymentSettingsPaymentMethodOptionsCard
impl Clone for CreateInvoicePaymentSettingsPaymentMethodOptionsCard
Source§fn clone(&self) -> CreateInvoicePaymentSettingsPaymentMethodOptionsCard
fn clone(&self) -> CreateInvoicePaymentSettingsPaymentMethodOptionsCard
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 CreateInvoicePaymentSettingsPaymentMethodOptionsCard
Auto Trait Implementations§
impl Freeze for CreateInvoicePaymentSettingsPaymentMethodOptionsCard
impl RefUnwindSafe for CreateInvoicePaymentSettingsPaymentMethodOptionsCard
impl Send for CreateInvoicePaymentSettingsPaymentMethodOptionsCard
impl Sync for CreateInvoicePaymentSettingsPaymentMethodOptionsCard
impl Unpin for CreateInvoicePaymentSettingsPaymentMethodOptionsCard
impl UnwindSafe for CreateInvoicePaymentSettingsPaymentMethodOptionsCard
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