[][src]Struct stripe::IssuingAuthorizationRequest

pub struct IssuingAuthorizationRequest {
    pub approved: bool,
    pub authorized_amount: i64,
    pub authorized_currency: Currency,
    pub created: Timestamp,
    pub held_amount: i64,
    pub held_currency: Currency,
    pub reason: IssuingAuthorizationReason,
}

Fields

approved: bool

Whether this request was approved.

authorized_amount: i64

The amount that was authorized at the time of this request.

authorized_currency: Currency

The currency that was presented to the cardholder for the authorization.

Three-letter ISO currency code, in lowercase. Must be a supported currency.

created: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

held_amount: i64

The amount Stripe held from your account to fund the authorization, if the request was approved.

held_currency: Currency

The currency of the held amount.

reason: IssuingAuthorizationReason

One of authorization_controls, card_active, card_inactive, insufficient_funds, account_compliance_disabled, account_inactive, suspected_fraud, webhook_approved, webhook_declined, or webhook_timeout.

Trait Implementations

impl Clone for IssuingAuthorizationRequest[src]

impl Debug for IssuingAuthorizationRequest[src]

impl Serialize for IssuingAuthorizationRequest[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<T> Same<T> for T

type Output = T

Should always be Self