pub struct GetWebhook {
pub url: String,
pub id: i64,
pub description: String,
pub events: Vec<String>,
pub type: RHashType,
pub created_at: String,
pub modified_at: String,
}Fields§
§url: StringURL of the webhook
id: i64ID of the webhook
description: StringDescription of the webhook
events: Vec<String>§type: RHashTypeType of webhook (marketing or transac)
created_at: StringCreation UTC date-time of the webhook (YYYY-MM-DDTHH:mm:ss.SSSZ)
modified_at: StringLast modification UTC date-time of the webhook (YYYY-MM-DDTHH:mm:ss.SSSZ)
Implementations§
Trait Implementations§
Source§impl Clone for GetWebhook
impl Clone for GetWebhook
Source§fn clone(&self) -> GetWebhook
fn clone(&self) -> GetWebhook
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 GetWebhook
impl Debug for GetWebhook
Source§impl Default for GetWebhook
impl Default for GetWebhook
Source§fn default() -> GetWebhook
fn default() -> GetWebhook
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetWebhook
impl<'de> Deserialize<'de> for GetWebhook
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 PartialEq for GetWebhook
impl PartialEq for GetWebhook
Source§impl Serialize for GetWebhook
impl Serialize for GetWebhook
impl StructuralPartialEq for GetWebhook
Auto Trait Implementations§
impl Freeze for GetWebhook
impl RefUnwindSafe for GetWebhook
impl Send for GetWebhook
impl Sync for GetWebhook
impl Unpin for GetWebhook
impl UnwindSafe for GetWebhook
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