pub struct WebhookFailureEvent {
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub webhook: Option<Box<Webhook>>,
pub url: Option<String>,
pub http_status: Option<f64>,
pub response_or_error: Option<String>,
pub execution_id: Option<String>,
}Expand description
Entity representing a webhook execution failure.
Fields§
§id: Option<String>The unique identifier of the entity.
created_at: Option<DateTime<Utc>>The time at which the entity was created.
webhook: Option<Box<Webhook>>The webhook that this failure event is associated with.
url: Option<String>The URL that the webhook was trying to push to.
http_status: Option<f64>The HTTP status code returned by the recipient.
response_or_error: Option<String>The HTTP response body returned by the recipient or error occured.
execution_id: Option<String>The unique execution ID of the webhook push. This is retained between retries of the same push.
Trait Implementations§
Source§impl Clone for WebhookFailureEvent
impl Clone for WebhookFailureEvent
Source§fn clone(&self) -> WebhookFailureEvent
fn clone(&self) -> WebhookFailureEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WebhookFailureEvent
impl Debug for WebhookFailureEvent
Source§impl Default for WebhookFailureEvent
impl Default for WebhookFailureEvent
Source§fn default() -> WebhookFailureEvent
fn default() -> WebhookFailureEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookFailureEventwhere
WebhookFailureEvent: Default,
impl<'de> Deserialize<'de> for WebhookFailureEventwhere
WebhookFailureEvent: Default,
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
Source§impl GraphQLFields for WebhookFailureEvent
impl GraphQLFields for WebhookFailureEvent
Auto Trait Implementations§
impl Freeze for WebhookFailureEvent
impl RefUnwindSafe for WebhookFailureEvent
impl Send for WebhookFailureEvent
impl Sync for WebhookFailureEvent
impl Unpin for WebhookFailureEvent
impl UnwindSafe for WebhookFailureEvent
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