pub struct GetWebhooksResponse200AllOfDataInner {Show 18 fields
pub id: Option<i32>,
pub company_id: Option<i32>,
pub owner_id: Option<i32>,
pub user_id: Option<i32>,
pub event_action: Option<String>,
pub event_object: Option<String>,
pub subscription_url: Option<String>,
pub is_active: Option<IsActive>,
pub add_time: Option<String>,
pub remove_time: Option<Option<String>>,
pub type: Option<Type>,
pub http_auth_user: Option<Option<String>>,
pub http_auth_password: Option<Option<String>>,
pub additional_data: Option<Value>,
pub remove_reason: Option<Option<String>>,
pub last_delivery_time: Option<Option<String>>,
pub last_http_status: Option<Option<i32>>,
pub admin_id: Option<i32>,
}
Fields§
§id: Option<i32>
The ID of the Webhook
company_id: Option<i32>
The ID of the company related to the Webhook
owner_id: Option<i32>
The ID of the user who owns the Webhook
user_id: Option<i32>
The ID of the user related to the Webhook
event_action: Option<String>
The Webhook action
event_object: Option<String>
The Webhook object
subscription_url: Option<String>
The subscription URL of the Webhook
is_active: Option<IsActive>
§add_time: Option<String>
The date when the Webhook was added
remove_time: Option<Option<String>>
The date when the Webhook was removed (if removed)
type: Option<Type>
The type of the Webhook
http_auth_user: Option<Option<String>>
The username of the subscription_url
of the Webhook
http_auth_password: Option<Option<String>>
The password of the subscription_url
of the Webhook
additional_data: Option<Value>
Any additional data related to the Webhook
remove_reason: Option<Option<String>>
The removal reason of the Webhook (if removed)
last_delivery_time: Option<Option<String>>
The last delivery time of the Webhook
last_http_status: Option<Option<i32>>
The last delivery HTTP status of the Webhook
admin_id: Option<i32>
The ID of the admin of the Webhook
Implementations§
Trait Implementations§
Source§impl Clone for GetWebhooksResponse200AllOfDataInner
impl Clone for GetWebhooksResponse200AllOfDataInner
Source§fn clone(&self) -> GetWebhooksResponse200AllOfDataInner
fn clone(&self) -> GetWebhooksResponse200AllOfDataInner
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<'de> Deserialize<'de> for GetWebhooksResponse200AllOfDataInner
impl<'de> Deserialize<'de> for GetWebhooksResponse200AllOfDataInner
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 GetWebhooksResponse200AllOfDataInner
impl PartialEq for GetWebhooksResponse200AllOfDataInner
Source§fn eq(&self, other: &GetWebhooksResponse200AllOfDataInner) -> bool
fn eq(&self, other: &GetWebhooksResponse200AllOfDataInner) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetWebhooksResponse200AllOfDataInner
Auto Trait Implementations§
impl Freeze for GetWebhooksResponse200AllOfDataInner
impl RefUnwindSafe for GetWebhooksResponse200AllOfDataInner
impl Send for GetWebhooksResponse200AllOfDataInner
impl Sync for GetWebhooksResponse200AllOfDataInner
impl Unpin for GetWebhooksResponse200AllOfDataInner
impl UnwindSafe for GetWebhooksResponse200AllOfDataInner
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