pub struct BatchFailedWebhookEvent {
pub id: String,
pub created_at: i64,
pub data: Data,
pub type_: String,
pub object: Option<String>,
}Expand description
Sent when a batch API request has failed.
Fields§
§id: StringThe unique ID of the event.
created_at: i64The Unix timestamp (in seconds) of when the batch API request failed.
data: DataEvent data payload.
type_: StringThe type of the event. Always batch.failed.
object: Option<String>The object of the event. Always event.
Trait Implementations§
Source§impl Clone for BatchFailedWebhookEvent
impl Clone for BatchFailedWebhookEvent
Source§fn clone(&self) -> BatchFailedWebhookEvent
fn clone(&self) -> BatchFailedWebhookEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchFailedWebhookEvent
impl Debug for BatchFailedWebhookEvent
Source§impl<'de> Deserialize<'de> for BatchFailedWebhookEvent
impl<'de> Deserialize<'de> for BatchFailedWebhookEvent
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 BatchFailedWebhookEvent
impl RefUnwindSafe for BatchFailedWebhookEvent
impl Send for BatchFailedWebhookEvent
impl Sync for BatchFailedWebhookEvent
impl Unpin for BatchFailedWebhookEvent
impl UnsafeUnpin for BatchFailedWebhookEvent
impl UnwindSafe for BatchFailedWebhookEvent
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