fusionauth_rust_client/models/
audit_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/// AuditLogSearchCriteria : 
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct AuditLogSearchCriteria {
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 = "message", skip_serializing_if = "Option::is_none")]
21    pub message: Option<String>,
22    #[serde(rename = "newValue", skip_serializing_if = "Option::is_none")]
23    pub new_value: Option<String>,
24    #[serde(rename = "oldValue", skip_serializing_if = "Option::is_none")]
25    pub old_value: Option<String>,
26    #[serde(rename = "reason", skip_serializing_if = "Option::is_none")]
27    pub reason: Option<String>,
28    /// The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
29    #[serde(rename = "start", skip_serializing_if = "Option::is_none")]
30    pub start: Option<i64>,
31    #[serde(rename = "user", skip_serializing_if = "Option::is_none")]
32    pub user: Option<String>,
33    #[serde(rename = "numberOfResults", skip_serializing_if = "Option::is_none")]
34    pub number_of_results: Option<i32>,
35    #[serde(rename = "orderBy", skip_serializing_if = "Option::is_none")]
36    pub order_by: Option<String>,
37    #[serde(rename = "startRow", skip_serializing_if = "Option::is_none")]
38    pub start_row: Option<i32>,
39}
40
41impl AuditLogSearchCriteria {
42    /// 
43    pub fn new() -> AuditLogSearchCriteria {
44        AuditLogSearchCriteria {
45            end: None,
46            message: None,
47            new_value: None,
48            old_value: None,
49            reason: None,
50            start: None,
51            user: None,
52            number_of_results: None,
53            order_by: None,
54            start_row: None,
55        }
56    }
57}
58