pub struct ListEventsParams {Show 13 fields
pub filter_customer_id: Option<String>,
pub filter_event_type: Option<String>,
pub filter_service_id: Option<String>,
pub filter_user_id: Option<String>,
pub filter_token_id: Option<String>,
pub filter_created_at: Option<String>,
pub filter_created_at_lte: Option<String>,
pub filter_created_at_lt: Option<String>,
pub filter_created_at_gte: Option<String>,
pub filter_created_at_gt: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
pub sort: Option<String>,
}
Expand description
struct for passing parameters to the method list_events
Fields§
§filter_customer_id: Option<String>
Limit the results returned to a specific customer.
filter_event_type: Option<String>
Limit the returned events to a specific event_type
.
filter_service_id: Option<String>
Limit the results returned to a specific service.
filter_user_id: Option<String>
Limit the results returned to a specific user.
filter_token_id: Option<String>
Limit the returned events to a specific token.
filter_created_at: Option<String>
Limit the returned events to a specific time frame. Accepts sub-parameters: lt, lte, gt, gte (e.g., filter[created_at][gt]=2022-01-12).
filter_created_at_lte: Option<String>
Return events on and before a date and time in ISO 8601 format.
filter_created_at_lt: Option<String>
Return events before a date and time in ISO 8601 format.
filter_created_at_gte: Option<String>
Return events on and after a date and time in ISO 8601 format.
filter_created_at_gt: Option<String>
Return events after a date and time in ISO 8601 format.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
sort: Option<String>
The order in which to list the results by creation date.
Trait Implementations§
Source§impl Clone for ListEventsParams
impl Clone for ListEventsParams
Source§fn clone(&self) -> ListEventsParams
fn clone(&self) -> ListEventsParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more