[][src]Struct stripe::ChargeOutcome

pub struct ChargeOutcome {
    pub network_status: Option<String>,
    pub reason: Option<String>,
    pub risk_level: Option<String>,
    pub risk_score: Option<i64>,
    pub rule: Option<Expandable<Rule>>,
    pub seller_message: Option<String>,
    pub type_: String,
}

Fields

network_status: Option<String>

Possible values are approved_by_network, declined_by_network, not_sent_to_network, and reversed_after_approval.

The value reversed_after_approval indicates the payment was blocked by Stripe after bank authorization, and may temporarily appear as "pending" on a cardholder's statement.

reason: Option<String>

An enumerated value providing a more detailed explanation of the outcome's type.

Charges blocked by Radar's default block rule have the value highest_risk_level. Charges placed in review by Radar's default review rule have the value elevated_risk_level. Charges authorized, blocked, or placed in review by custom rules have the value rule. See understanding declines for more details.

risk_level: Option<String>

Stripe's evaluation of the riskiness of the payment.

Possible values for evaluated payments are normal, elevated, highest. For non-card payments, and card-based payments predating the public assignment of risk levels, this field will have the value not_assessed. In the event of an error in the evaluation, this field will have the value unknown.

risk_score: Option<i64>

Stripe's evaluation of the riskiness of the payment.

Possible values for evaluated payments are between 0 and 100. For non-card payments, card-based payments predating the public assignment of risk scores, or in the event of an error during evaluation, this field will not be present. This field is only available with Radar for Fraud Teams.

rule: Option<Expandable<Rule>>

The ID of the Radar rule that matched the payment, if applicable.

seller_message: Option<String>

A human-readable description of the outcome type and reason, designed for you (the recipient of the payment), not your customer.

type_: String

Possible values are authorized, manual_review, issuer_declined, blocked, and invalid.

See understanding declines and Radar reviews for details.

Trait Implementations

impl Clone for ChargeOutcome[src]

impl Debug for ChargeOutcome[src]

impl Serialize for ChargeOutcome[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Same<T> for T

type Output = T

Should always be Self