pub struct IssuingAuthorizationRequest {
pub amount: i64,
pub amount_details: Option<IssuingAuthorizationAmountDetails>,
pub approved: bool,
pub authorization_code: Option<String>,
pub created: Timestamp,
pub currency: Currency,
pub merchant_amount: i64,
pub merchant_currency: Currency,
pub network_risk_score: Option<i64>,
pub reason: IssuingAuthorizationReason,
pub reason_message: Option<String>,
pub requested_at: Option<Timestamp>,
}Fields§
§amount: i64The pending_request.amount at the time of the request, presented in your card’s currency and in the smallest currency unit.
Stripe held this amount from your account to fund the authorization if the request was approved.
amount_details: Option<IssuingAuthorizationAmountDetails>Detailed breakdown of amount components.
These amounts are denominated in currency and in the smallest currency unit.
approved: boolWhether this request was approved.
A code created by Stripe which is shared with the merchant to validate the authorization.
This field will be populated if the authorization message was approved. The code typically starts with the letter “S”, followed by a six-digit number. For example, “S498162”. Please note that the code is not guaranteed to be unique across authorizations.
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.
merchant_amount: i64The pending_request.merchant_amount at the time of the request, presented in the merchant_currency and in the smallest currency unit.
merchant_currency: CurrencyThe currency that was collected by the merchant and presented to the cardholder for the authorization.
Three-letter ISO currency code, in lowercase. Must be a supported currency.
network_risk_score: Option<i64>The card network’s estimate of the likelihood that an authorization is fraudulent.
Takes on values between 1 and 99.
reason: IssuingAuthorizationReasonWhen an authorization is approved or declined by you or by Stripe, this field provides additional detail on the reason for the outcome.
reason_message: Option<String>If the request_history.reason is webhook_error because the direct webhook response is invalid (for example, parsing errors or missing parameters), we surface a more detailed error message via this field.
requested_at: Option<Timestamp>Time when the card network received an authorization request from the acquirer in UTC.
Referred to by networks as transmission time.
Trait Implementations§
source§impl Clone for IssuingAuthorizationRequest
impl Clone for IssuingAuthorizationRequest
source§fn clone(&self) -> IssuingAuthorizationRequest
fn clone(&self) -> IssuingAuthorizationRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for IssuingAuthorizationRequest
impl Debug for IssuingAuthorizationRequest
source§impl Default for IssuingAuthorizationRequest
impl Default for IssuingAuthorizationRequest
source§fn default() -> IssuingAuthorizationRequest
fn default() -> IssuingAuthorizationRequest
source§impl<'de> Deserialize<'de> for IssuingAuthorizationRequest
impl<'de> Deserialize<'de> for IssuingAuthorizationRequest
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationRequest
impl RefUnwindSafe for IssuingAuthorizationRequest
impl Send for IssuingAuthorizationRequest
impl Sync for IssuingAuthorizationRequest
impl Unpin for IssuingAuthorizationRequest
impl UnwindSafe for IssuingAuthorizationRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)