[][src]Struct heroku_rs::endpoints::addons::AddonWebhookEvent

pub struct AddonWebhookEvent {
    pub created_at: DateTime<Utc>,
    pub id: String,
    pub include: String,
    pub payload: Payload,
    pub updated_at: DateTime<Utc>,
}

Add-on Webhook Event

Stability: production

Represents a webhook event that occurred.

For more information please refer to the Heroku documentation

Fields

created_at: DateTime<Utc>

when event was created

id: String

the event’s unique identifier

include: String

the type of entity that the event is related to

payload: Payload

payload

updated_at: DateTime<Utc>

when the event was last updated

Trait Implementations

impl ApiResult for AddonWebhookEvent[src]

impl Clone for AddonWebhookEvent[src]

impl Debug for AddonWebhookEvent[src]

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

impl Serialize for AddonWebhookEvent[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<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.