pub struct IssuingAuthorization {Show 23 fields
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 network_data: Option<IssuingAuthorizationNetworkData>,
pub pending_request: Option<IssuingAuthorizationPendingRequest>,
pub request_history: Vec<IssuingAuthorizationRequest>,
pub status: IssuingAuthorizationStatus,
pub transactions: Vec<IssuingTransaction>,
pub treasury: Option<IssuingAuthorizationTreasury>,
pub verification_data: IssuingAuthorizationVerificationData,
pub wallet: Option<String>,
}Expand description
The resource representing a Stripe “IssuingAuthorization”.
For more details see https://stripe.com/docs/api/issuing/authorizations/object
Fields§
§id: IssuingAuthorizationIdUnique identifier for the object.
amount: i64The 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: boolWhether the authorization has been approved.
How the card details were provided.
balance_transactions: Vec<BalanceTransaction>List of balance transactions associated with this authorization.
card: IssuingCard§cardholder: Option<Expandable<IssuingCardholder>>The cardholder to whom this authorization belongs.
created: TimestampTime at which the object was created.
Measured in seconds since the Unix epoch.
currency: CurrencyThree-letter ISO currency code, in lowercase.
Must be a supported currency.
livemode: boolHas the value true if the object exists in live mode or the value false if the object exists in test mode.
merchant_amount: i64The total amount that was authorized or rejected.
This amount is in the merchant_currency and in the smallest currency unit.
merchant_currency: CurrencyThe currency that was presented to the cardholder for the authorization.
Three-letter ISO currency code, in lowercase. Must be a supported currency.
merchant_data: MerchantData§metadata: MetadataSet 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.
network_data: Option<IssuingAuthorizationNetworkData>Details about the authorization, such as identifiers, set by the card network.
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 a pending_request authorization was approved/declined, 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. This field can be helpful in determining why a given authorization was approved/declined.
status: IssuingAuthorizationStatusThe current status of the authorization in its lifecycle.
transactions: Vec<IssuingTransaction>List of transactions associated with this authorization.
treasury: Option<IssuingAuthorizationTreasury>Treasury details related to this authorization if it was created on a FinancialAccount.
verification_data: IssuingAuthorizationVerificationData§wallet: Option<String>The digital wallet used for this transaction.
One of apple_pay, google_pay, or samsung_pay.
Will populate as null when no digital wallet was utilized.
Trait Implementations§
source§impl Clone for IssuingAuthorization
impl Clone for IssuingAuthorization
source§fn clone(&self) -> IssuingAuthorization
fn clone(&self) -> IssuingAuthorization
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more