Struct stripe::IssuingAuthorizationPendingRequest[][src]

pub struct IssuingAuthorizationPendingRequest {
    pub amount: i64,
    pub amount_details: Option<IssuingAuthorizationAmountDetails>,
    pub currency: Currency,
    pub is_amount_controllable: bool,
    pub merchant_amount: i64,
    pub merchant_currency: Currency,
}

Fields

amount: i64

The additional amount Stripe will hold if the authorization is approved, in the card's currency and in the smallest currency unit.

amount_details: Option<IssuingAuthorizationAmountDetails>

Detailed breakdown of amount components.

These amounts are denominated in currency and in the smallest currency unit.

currency: Currency

Three-letter ISO currency code, in lowercase.

Must be a supported currency.

is_amount_controllable: bool

If set true, you may provide amount to control how much to hold for the authorization.

merchant_amount: i64

The amount the merchant is requesting to be authorized in the merchant_currency.

The amount is in the smallest currency unit.

merchant_currency: Currency

The local currency the merchant is requesting to authorize.

Trait Implementations

impl Clone for IssuingAuthorizationPendingRequest[src]

impl Debug for IssuingAuthorizationPendingRequest[src]

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

impl Serialize for IssuingAuthorizationPendingRequest[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> Instrument for T[src]

impl<T> Instrument 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]