[][src]Struct stripe::SetupIntentPaymentMethodOptionsCard

pub struct SetupIntentPaymentMethodOptionsCard {
    pub request_three_d_secure: Option<SetupIntentPaymentMethodOptionsCardRequestThreeDSecure>,
}

Fields

request_three_d_secure: Option<SetupIntentPaymentMethodOptionsCardRequestThreeDSecure>

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. Permitted values include: automatic or any. If not provided, 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.

Trait Implementations

impl Clone for SetupIntentPaymentMethodOptionsCard[src]

impl Debug for SetupIntentPaymentMethodOptionsCard[src]

impl<'de> Deserialize<'de> for SetupIntentPaymentMethodOptionsCard[src]

impl Serialize for SetupIntentPaymentMethodOptionsCard[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.