pub struct Webhook {
pub content_type: Option<String>,
pub created_time: Option<String>,
pub events: Option<Vec<String>>,
pub headers: Option<Vec<Header>>,
pub is_enabled: Option<bool>,
pub is_user_extended: Option<bool>,
pub method: Option<String>,
pub name: Option<String>,
pub organization: Option<String>,
pub owner: Option<String>,
pub url: Option<String>,
}Fields§
§content_type: Option<String>§created_time: Option<String>§events: Option<Vec<String>>§headers: Option<Vec<Header>>§is_enabled: Option<bool>§is_user_extended: Option<bool>§method: Option<String>§name: Option<String>§organization: Option<String>§owner: Option<String>§url: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Webhook
impl<'de> Deserialize<'de> for Webhook
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
impl StructuralPartialEq for Webhook
Auto Trait Implementations§
impl Freeze for Webhook
impl RefUnwindSafe for Webhook
impl Send for Webhook
impl Sync for Webhook
impl Unpin for Webhook
impl UnwindSafe for Webhook
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