Struct stripe::IssuingAuthorization[][src]

pub struct IssuingAuthorization {
    pub id: IssuingAuthorizationId,
    pub amount: i64,
    pub amount_details: Option<IssuingAuthorizationAmountDetails>,
    pub approved: bool,
    pub authorization_method: IssuingAuthorizationMethod,
    pub balance_transactions: Vec<BalanceTransaction>,
    pub card: IssuingCard,
    pub cardholder: Option<Expandable<IssuingCardholder>>,
    pub created: Timestamp,
    pub currency: Currency,
    pub livemode: bool,
    pub merchant_amount: i64,
    pub merchant_currency: Currency,
    pub merchant_data: MerchantData,
    pub metadata: Metadata,
    pub pending_request: Option<IssuingAuthorizationPendingRequest>,
    pub request_history: Vec<IssuingAuthorizationRequest>,
    pub status: IssuingAuthorizationStatus,
    pub transactions: Vec<IssuingTransaction>,
    pub verification_data: IssuingAuthorizationVerificationData,
    pub wallet: Option<String>,
}

The resource representing a Stripe "IssuingAuthorization".

Fields

id: IssuingAuthorizationId

Unique identifier for the object.

amount: i64

The total amount that was authorized or rejected.

This amount is 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.

approved: bool

Whether the authorization has been approved.

authorization_method: IssuingAuthorizationMethod

How the card details were provided.

balance_transactions: Vec<BalanceTransaction>

List of balance transactions associated with this authorization.

card: IssuingCardcardholder: Option<Expandable<IssuingCardholder>>

The cardholder to whom this authorization belongs.

created: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

currency: Currency

Three-letter ISO currency code, in lowercase.

Must be a supported currency.

livemode: bool

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

merchant_amount: i64

The total amount that was authorized or rejected.

This amount is in the merchant_currency and in the smallest currency unit.

merchant_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.

merchant_data: MerchantDatametadata: Metadata

Set of key-value pairs that you can attach to an object.

This can be useful for storing additional information about the object in a structured format.

pending_request: Option<IssuingAuthorizationPendingRequest>

The pending authorization request.

This field will only be non-null during an issuing_authorization.request webhook.

request_history: Vec<IssuingAuthorizationRequest>

History of every time the authorization was approved/denied (whether approved/denied by you directly or by Stripe based on your spending_controls).

If the merchant changes the authorization by performing an incremental authorization or partial capture, you can look at this field to see the previous states of the authorization.

status: IssuingAuthorizationStatus

The current status of the authorization in its lifecycle.

transactions: Vec<IssuingTransaction>

List of transactions associated with this authorization.

verification_data: IssuingAuthorizationVerificationDatawallet: Option<String>

What, if any, digital wallet was used for this authorization.

One of apple_pay, google_pay, or samsung_pay.

Trait Implementations

impl Clone for IssuingAuthorization[src]

impl Debug for IssuingAuthorization[src]

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

impl Object for IssuingAuthorization[src]

type Id = IssuingAuthorizationId

The canonical id type for this object.

impl Serialize for IssuingAuthorization[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]