pub struct WebhookEventLogSearchCriteria {
pub end: Option<i64>,
pub event: Option<String>,
pub event_result: Option<WebhookEventResult>,
pub event_type: Option<EventType>,
pub start: Option<i64>,
pub number_of_results: Option<i32>,
pub order_by: Option<String>,
pub start_row: Option<i32>,
}Expand description
WebhookEventLogSearchCriteria : Search criteria for the webhook event log.
Fields§
§end: Option<i64>The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
event: Option<String>§event_result: Option<WebhookEventResult>§event_type: Option<EventType>§start: Option<i64>The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
number_of_results: Option<i32>§order_by: Option<String>§start_row: Option<i32>Implementations§
Source§impl WebhookEventLogSearchCriteria
impl WebhookEventLogSearchCriteria
Sourcepub fn new() -> WebhookEventLogSearchCriteria
pub fn new() -> WebhookEventLogSearchCriteria
Search criteria for the webhook event log.
Trait Implementations§
Source§impl Clone for WebhookEventLogSearchCriteria
impl Clone for WebhookEventLogSearchCriteria
Source§fn clone(&self) -> WebhookEventLogSearchCriteria
fn clone(&self) -> WebhookEventLogSearchCriteria
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 Default for WebhookEventLogSearchCriteria
impl Default for WebhookEventLogSearchCriteria
Source§fn default() -> WebhookEventLogSearchCriteria
fn default() -> WebhookEventLogSearchCriteria
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookEventLogSearchCriteria
impl<'de> Deserialize<'de> for WebhookEventLogSearchCriteria
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 WebhookEventLogSearchCriteria
impl PartialEq for WebhookEventLogSearchCriteria
Source§fn eq(&self, other: &WebhookEventLogSearchCriteria) -> bool
fn eq(&self, other: &WebhookEventLogSearchCriteria) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebhookEventLogSearchCriteria
Auto Trait Implementations§
impl Freeze for WebhookEventLogSearchCriteria
impl RefUnwindSafe for WebhookEventLogSearchCriteria
impl Send for WebhookEventLogSearchCriteria
impl Sync for WebhookEventLogSearchCriteria
impl Unpin for WebhookEventLogSearchCriteria
impl UnwindSafe for WebhookEventLogSearchCriteria
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