fusionauth_rust_client/models/
webhook_event_log_search_criteria.rs

1/*
2 * FusionAuth API
3 *
4 * This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
5 *
6 * The version of the OpenAPI document: 1.60.1
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// WebhookEventLogSearchCriteria : Search criteria for the webhook event log.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct WebhookEventLogSearchCriteria {
17    /// The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
18    #[serde(rename = "end", skip_serializing_if = "Option::is_none")]
19    pub end: Option<i64>,
20    #[serde(rename = "event", skip_serializing_if = "Option::is_none")]
21    pub event: Option<String>,
22    #[serde(rename = "eventResult", skip_serializing_if = "Option::is_none")]
23    pub event_result: Option<models::WebhookEventResult>,
24    #[serde(rename = "eventType", skip_serializing_if = "Option::is_none")]
25    pub event_type: Option<models::EventType>,
26    /// The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
27    #[serde(rename = "start", skip_serializing_if = "Option::is_none")]
28    pub start: Option<i64>,
29    #[serde(rename = "numberOfResults", skip_serializing_if = "Option::is_none")]
30    pub number_of_results: Option<i32>,
31    #[serde(rename = "orderBy", skip_serializing_if = "Option::is_none")]
32    pub order_by: Option<String>,
33    #[serde(rename = "startRow", skip_serializing_if = "Option::is_none")]
34    pub start_row: Option<i32>,
35}
36
37impl WebhookEventLogSearchCriteria {
38    /// Search criteria for the webhook event log.
39    pub fn new() -> WebhookEventLogSearchCriteria {
40        WebhookEventLogSearchCriteria {
41            end: None,
42            event: None,
43            event_result: None,
44            event_type: None,
45            start: None,
46            number_of_results: None,
47            order_by: None,
48            start_row: None,
49        }
50    }
51}
52