pub struct InvoicePaymentMethodOptionsCard {
pub installments: Option<InvoiceInstallmentsCard>,
pub request_three_d_secure: Option<InvoicePaymentMethodOptionsCardRequestThreeDSecure>,
}
Fields§
§installments: Option<InvoiceInstallmentsCard>
§request_three_d_secure: Option<InvoicePaymentMethodOptionsCardRequestThreeDSecure>
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.
Trait Implementations§
Source§impl Clone for InvoicePaymentMethodOptionsCard
impl Clone for InvoicePaymentMethodOptionsCard
Source§fn clone(&self) -> InvoicePaymentMethodOptionsCard
fn clone(&self) -> InvoicePaymentMethodOptionsCard
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 FromValueOpt for InvoicePaymentMethodOptionsCard
impl FromValueOpt for InvoicePaymentMethodOptionsCard
fn from_value(v: Value) -> Option<Self>
impl Copy for InvoicePaymentMethodOptionsCard
Auto Trait Implementations§
impl Freeze for InvoicePaymentMethodOptionsCard
impl RefUnwindSafe for InvoicePaymentMethodOptionsCard
impl Send for InvoicePaymentMethodOptionsCard
impl Sync for InvoicePaymentMethodOptionsCard
impl Unpin for InvoicePaymentMethodOptionsCard
impl UnwindSafe for InvoicePaymentMethodOptionsCard
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