pub struct CreateWebhookEndpoint<'a> {
pub api_version: Option<ApiVersion>,
pub connect: Option<bool>,
pub description: Option<String>,
pub enabled_events: Vec<EventFilter>,
pub expand: &'a [&'a str],
pub metadata: Option<Metadata>,
pub url: &'a str,
}Expand description
The parameters for WebhookEndpoint::create.
Fields§
§api_version: Option<ApiVersion>Events sent to this endpoint will be generated with this Stripe Version instead of your account’s default Stripe Version.
connect: Option<bool>Whether this endpoint should receive events from connected accounts (true), or from your account (false).
Defaults to false.
description: Option<String>An optional description of what the webhook is used for.
enabled_events: Vec<EventFilter>The list of events to enable for this endpoint.
You may specify ['*'] to enable all events, except those that require explicit selection.
expand: &'a [&'a str]Specifies which fields in the response should be expanded.
metadata: Option<Metadata>Set of key-value pairs that you can attach to an object.
This can be useful for storing additional information about the object in a structured format.
Individual keys can be unset by posting an empty value to them.
All keys can be unset by posting an empty value to metadata.
url: &'a strThe URL of the webhook endpoint.
Implementations§
source§impl<'a> CreateWebhookEndpoint<'a>
impl<'a> CreateWebhookEndpoint<'a>
pub fn new(enabled_events: Vec<EventFilter>, url: &'a str) -> Self
Trait Implementations§
source§impl<'a> Clone for CreateWebhookEndpoint<'a>
impl<'a> Clone for CreateWebhookEndpoint<'a>
source§fn clone(&self) -> CreateWebhookEndpoint<'a>
fn clone(&self) -> CreateWebhookEndpoint<'a>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl<'a> Debug for CreateWebhookEndpoint<'a>
impl<'a> Debug for CreateWebhookEndpoint<'a>
Auto Trait Implementations§
impl<'a> Freeze for CreateWebhookEndpoint<'a>
impl<'a> RefUnwindSafe for CreateWebhookEndpoint<'a>
impl<'a> Send for CreateWebhookEndpoint<'a>
impl<'a> Sync for CreateWebhookEndpoint<'a>
impl<'a> Unpin for CreateWebhookEndpoint<'a>
impl<'a> UnwindSafe for CreateWebhookEndpoint<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)