[][src]Struct heroku_rs::endpoints::apps::post::AppWebhookCreateParams

pub struct AppWebhookCreateParams {
    pub authorization: Option<String>,
    pub include: Vec<String>,
    pub level: String,
    pub secret: Option<String>,
    pub url: String,
}

Fields

authorization: Option<String>

A custom Authorization header that Heroku will include with all webhook notifications

include: Vec<String>

The entities that the subscription provides notifications for

level: String

One of: "notify" or "sync" 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

secret: Option<String>

A value that Heroku will use to sign all webhook notification requests (the signature is included in the request’s Heroku-Webhook-Hmac-SHA256 header)

url: String

The URL where the webhook’s notification requests are sent

Trait Implementations

impl Clone for AppWebhookCreateParams[src]

impl Debug for AppWebhookCreateParams[src]

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

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