pub struct WebhookEventResource {
pub type: String,
pub id: String,
pub attributes: EventAttributes,
pub relationships: EventRelationships,
}
Fields§
§type: String
The type of this resource: webhook-events
id: String
The unique identifier for this event. This will remain constant across delivery retries.
attributes: EventAttributes
§relationships: EventRelationships
Trait Implementations§
Source§impl Debug for WebhookEventResource
impl Debug for WebhookEventResource
Source§impl<'de> Deserialize<'de> for WebhookEventResource
impl<'de> Deserialize<'de> for WebhookEventResource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WebhookEventResource
impl RefUnwindSafe for WebhookEventResource
impl Send for WebhookEventResource
impl Sync for WebhookEventResource
impl Unpin for WebhookEventResource
impl UnwindSafe for WebhookEventResource
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
Mutably borrows from an owned value. Read more