pub enum PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure {
Any,
Automatic,
Challenge,
}
Expand description
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.
If not provided, this value defaults to automatic
.
Read our guide on manually requesting 3D Secure for more information on how this configuration interacts with Radar and our SCA Engine.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
impl Clone for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
Source§fn clone(&self) -> PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
fn clone(&self) -> PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
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 FromStr for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
impl FromStr for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure, <PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure as FromStr>::Err>
fn from_str( s: &str, ) -> Result<PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure, <PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
impl PartialEq for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
Source§fn eq(
&self,
other: &PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure,
) -> bool
fn eq( &self, other: &PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
impl Eq for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
impl StructuralPartialEq for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
Auto Trait Implementations§
impl Freeze for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
impl RefUnwindSafe for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
impl Send for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
impl Sync for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
impl Unpin for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
impl UnwindSafe for PaymentIntentPaymentMethodOptionsCardRequestThreeDSecure
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