Skip to main content

StripeWebhookResult

Type Alias StripeWebhookResult 

Source
pub type StripeWebhookResult<T> = Result<T, StripeWebhookError>;
Expand description

Result type for Stripe webhook operations

Aliased Type§

pub enum StripeWebhookResult<T> {
    Ok(T),
    Err(StripeWebhookError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StripeWebhookError)

Contains the error value