Struct stripe::IssuingAuthorization[][src]

pub struct IssuingAuthorization {
Show 21 fields pub id: IssuingAuthorizationId, pub amount: i64, pub amount_details: Option<Box<IssuingAuthorizationAmountDetails>>, pub approved: bool, pub authorization_method: IssuingAuthorizationMethod, pub balance_transactions: Vec<BalanceTransaction>, pub card: IssuingCard, pub cardholder: Option<Box<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<Box<IssuingAuthorizationPendingRequest>>, pub request_history: Vec<IssuingAuthorizationRequest>, pub status: IssuingAuthorizationStatus, pub transactions: Vec<IssuingTransaction>, pub verification_data: IssuingAuthorizationVerificationData, pub wallet: Option<Box<String>>,
}
Expand description

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<Box<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<Box<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<Box<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 pending_request was approved/denied, either by you directly or by Stripe (e.g.

based on your spending_controls). If the merchant changes the authorization by performing an incremental authorization, you can look at this field to see the previous requests for 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<Box<String>>

The digital wallet used for this authorization.

One of apple_pay, google_pay, or samsung_pay.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

The canonical id type for this object.

The id of the object.

The object’s type, typically represented in wire format as the object property.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more