pub struct GetWebhooksResponse200 {
pub success: Option<bool>,
pub status: Option<String>,
pub data: Option<Vec<GetWebhooksResponse200AllOfDataInner>>,
}
Fields§
§success: Option<bool>
If the response is successful or not
status: Option<String>
The status of the response
data: Option<Vec<GetWebhooksResponse200AllOfDataInner>>
The array of Webhooks
Implementations§
Source§impl GetWebhooksResponse200
impl GetWebhooksResponse200
pub fn new() -> GetWebhooksResponse200
Trait Implementations§
Source§impl Clone for GetWebhooksResponse200
impl Clone for GetWebhooksResponse200
Source§fn clone(&self) -> GetWebhooksResponse200
fn clone(&self) -> GetWebhooksResponse200
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 GetWebhooksResponse200
impl Debug for GetWebhooksResponse200
Source§impl<'de> Deserialize<'de> for GetWebhooksResponse200
impl<'de> Deserialize<'de> for GetWebhooksResponse200
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 GetWebhooksResponse200
impl PartialEq for GetWebhooksResponse200
Source§impl Serialize for GetWebhooksResponse200
impl Serialize for GetWebhooksResponse200
impl StructuralPartialEq for GetWebhooksResponse200
Auto Trait Implementations§
impl Freeze for GetWebhooksResponse200
impl RefUnwindSafe for GetWebhooksResponse200
impl Send for GetWebhooksResponse200
impl Sync for GetWebhooksResponse200
impl Unpin for GetWebhooksResponse200
impl UnwindSafe for GetWebhooksResponse200
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