[][src]Struct heroku_rs::endpoints::apps::AppWebhookDelivery

pub struct AppWebhookDelivery {
    pub created_at: String,
    pub event: WebhookDeliveryEvent,
    pub id: String,
    pub num_attempts: i64,
    pub next_attempt_at: Option<String>,
    pub last_attempt: Option<WebhookDeliveryLastAttempt>,
    pub status: String,
    pub updated_at: String,
    pub webhook: WebhookDeliveryWebhook,
}

App Webhook Delivery

Stability: production

Represents the delivery of a webhook notification, including its current status.

See Heroku documentation for more information about this endpoint

Fields

created_at: String

when the delivery was created

event: WebhookDeliveryEvent

the event’s struct containing

id: String

the delivery’s unique identifier

num_attempts: i64

number of times a delivery has been attempted

next_attempt_at: Option<String>

when delivery will be attempted again

last_attempt: Option<WebhookDeliveryLastAttempt>

last attempt of a delivery

status: String

the delivery’s status one of:"pending" or "scheduled" or "retrying" or "failed" or "succeeded"

updated_at: String

when the delivery was last updated

webhook: WebhookDeliveryWebhook

the webhook which we get the deliveries for

Trait Implementations

impl ApiResult for AppWebhookDelivery[src]

impl Clone for AppWebhookDelivery[src]

impl Debug for AppWebhookDelivery[src]

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

impl Eq for AppWebhookDelivery[src]

impl HerokuEndpoint<AppWebhookDelivery, (), ()> for AppWebhookDeliveryDetails[src]

impl PartialEq<AppWebhookDelivery> for AppWebhookDelivery[src]

impl Serialize for AppWebhookDelivery[src]

impl StructuralEq for AppWebhookDelivery[src]

impl StructuralPartialEq for AppWebhookDelivery[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.