pub struct GetWebhookEventResponse {
pub id: String,
pub date: String,
pub kind: String,
pub data: HashMap<String, HashMap<String, Value>>,
pub status: String,
pub error: Option<String>,
pub timestamp_sent: i64,
}Expand description
Get Webhook Event
Fields§
§id: String§date: String§kind: String§data: HashMap<String, HashMap<String, Value>>§status: String§error: Option<String>§timestamp_sent: i64Trait Implementations§
Source§impl Clone for GetWebhookEventResponse
impl Clone for GetWebhookEventResponse
Source§fn clone(&self) -> GetWebhookEventResponse
fn clone(&self) -> GetWebhookEventResponse
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 GetWebhookEventResponse
impl Debug for GetWebhookEventResponse
Source§impl<'de> Deserialize<'de> for GetWebhookEventResponse
impl<'de> Deserialize<'de> for GetWebhookEventResponse
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 GetWebhookEventResponse
impl RefUnwindSafe for GetWebhookEventResponse
impl Send for GetWebhookEventResponse
impl Sync for GetWebhookEventResponse
impl Unpin for GetWebhookEventResponse
impl UnsafeUnpin for GetWebhookEventResponse
impl UnwindSafe for GetWebhookEventResponse
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