Struct stripe::ChargeOutcome[][src]

pub struct ChargeOutcome {
    pub outcome_type: OutcomeType,
    pub network_status: NetworkStatus,
    pub reason: Option<OutcomeReason>,
    pub risk_level: Option<RiskLevel>,
    pub seller_message: Option<String>,
    pub rule: Option<String>,
}

The resource representing a Stripe charge object outcome.

For more details see https://stripe.com/docs/api#charge_object-outcome

Fields

Trait Implementations

impl Debug for ChargeOutcome
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations