[][src]Struct stripe::SourceCodeVerificationFlow

pub struct SourceCodeVerificationFlow {
    pub attempts_remaining: i64,
    pub status: String,
}

Fields

attempts_remaining: i64

The number of attempts remaining to authenticate the source object with a verification code.

status: String

The status of the code verification, either pending (awaiting verification, attempts_remaining should be greater than 0), succeeded (successful verification) or failed (failed verification, cannot be verified anymore as attempts_remaining should be 0).

Trait Implementations

impl Clone for SourceCodeVerificationFlow[src]

impl Debug for SourceCodeVerificationFlow[src]

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

impl Serialize for SourceCodeVerificationFlow[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.