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

pub struct AppWebhook {
    pub app: WebhookApp,
    pub created_at: String,
    pub id: String,
    pub include: Vec<String>,
    pub level: String,
    pub updated_at: String,
    pub url: String,
}

App Webhook

Stability: production

Represents the details of a webhook subscription

See Heroku documentation for more information about this endpoint

Fields

app: WebhookApp

the app that has the webhook

created_at: String

when app webhook was created

id: String

unique identifier of app webhook

include: Vec<String>

the entities that the subscription provides notifications for

level: String

If notify, Heroku makes a single, fire-and-forget delivery attempt. If sync, Heroku attempts multiple deliveries until the request is successful or a limit is reached. one of: "notify" or "sync"

updated_at: String

when app webhook was updated

url: String

the URL where the webhook’s notification requests are sent

Trait Implementations

impl ApiResult for AppWebhook[src]

impl Clone for AppWebhook[src]

impl Debug for AppWebhook[src]

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

impl Eq for AppWebhook[src]

impl HerokuEndpoint<AppWebhook, (), ()> for AppWebhookDelete[src]

impl HerokuEndpoint<AppWebhook, (), ()> for AppWebhookDetails[src]

impl HerokuEndpoint<AppWebhook, (), AppWebhookCreateParams> for AppWebhookCreate[src]

impl HerokuEndpoint<AppWebhook, (), AppWebhookUpdateParams> for AppWebhookUpdate[src]

impl PartialEq<AppWebhook> for AppWebhook[src]

impl Serialize for AppWebhook[src]

impl StructuralEq for AppWebhook[src]

impl StructuralPartialEq for AppWebhook[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.