pub struct GetWebhooksWebhooksInner {
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 GetWebhooksWebhooksInner
impl Clone for GetWebhooksWebhooksInner
Source§fn clone(&self) -> GetWebhooksWebhooksInner
fn clone(&self) -> GetWebhooksWebhooksInner
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 GetWebhooksWebhooksInner
impl Debug for GetWebhooksWebhooksInner
Source§impl Default for GetWebhooksWebhooksInner
impl Default for GetWebhooksWebhooksInner
Source§fn default() -> GetWebhooksWebhooksInner
fn default() -> GetWebhooksWebhooksInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetWebhooksWebhooksInner
impl<'de> Deserialize<'de> for GetWebhooksWebhooksInner
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 GetWebhooksWebhooksInner
impl PartialEq for GetWebhooksWebhooksInner
Source§impl Serialize for GetWebhooksWebhooksInner
impl Serialize for GetWebhooksWebhooksInner
impl StructuralPartialEq for GetWebhooksWebhooksInner
Auto Trait Implementations§
impl Freeze for GetWebhooksWebhooksInner
impl RefUnwindSafe for GetWebhooksWebhooksInner
impl Send for GetWebhooksWebhooksInner
impl Sync for GetWebhooksWebhooksInner
impl Unpin for GetWebhooksWebhooksInner
impl UnwindSafe for GetWebhooksWebhooksInner
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