#[non_exhaustive]pub enum IssuingAuthorizationRequestReason {
Show 21 variants
AccountDisabled,
CardActive,
CardCanceled,
CardExpired,
CardInactive,
CardholderBlocked,
CardholderInactive,
CardholderVerificationRequired,
InsecureAuthorizationMethod,
InsufficientFunds,
NetworkFallback,
NotAllowed,
PinBlocked,
SpendingControls,
SuspectedFraud,
VerificationFailed,
WebhookApproved,
WebhookDeclined,
WebhookError,
WebhookTimeout,
Unknown(String),
}
Expand description
When an authorization is approved or declined by you or by Stripe, this field provides additional detail on the reason for the outcome.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AccountDisabled
CardActive
CardCanceled
CardExpired
CardInactive
CardholderBlocked
CardholderInactive
CardholderVerificationRequired
InsecureAuthorizationMethod
InsufficientFunds
NetworkFallback
NotAllowed
PinBlocked
SpendingControls
SuspectedFraud
VerificationFailed
WebhookApproved
WebhookDeclined
WebhookError
WebhookTimeout
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for IssuingAuthorizationRequestReason
impl Clone for IssuingAuthorizationRequestReason
Source§fn clone(&self) -> IssuingAuthorizationRequestReason
fn clone(&self) -> IssuingAuthorizationRequestReason
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl FromStr for IssuingAuthorizationRequestReason
impl FromStr for IssuingAuthorizationRequestReason
Source§type Err = Infallible
type Err = Infallible
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<IssuingAuthorizationRequestReason, <IssuingAuthorizationRequestReason as FromStr>::Err>
fn from_str( s: &str, ) -> Result<IssuingAuthorizationRequestReason, <IssuingAuthorizationRequestReason as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for IssuingAuthorizationRequestReason
impl PartialEq for IssuingAuthorizationRequestReason
Source§fn eq(&self, other: &IssuingAuthorizationRequestReason) -> bool
fn eq(&self, other: &IssuingAuthorizationRequestReason) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for IssuingAuthorizationRequestReason
impl StructuralPartialEq for IssuingAuthorizationRequestReason
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationRequestReason
impl RefUnwindSafe for IssuingAuthorizationRequestReason
impl Send for IssuingAuthorizationRequestReason
impl Sync for IssuingAuthorizationRequestReason
impl Unpin for IssuingAuthorizationRequestReason
impl UnwindSafe for IssuingAuthorizationRequestReason
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
Mutably borrows from an owned value. Read more