thehive_client/models/
output_custom_event.rs

1/*
2 * TheHive API
3 *
4 * Comprehensive OpenAPI specification inferred from the TheHive4py client library. This API allows interaction with TheHive platform for managing alerts, cases, observables, tasks, users, and other entities. 
5 *
6 * The version of the OpenAPI document: 2.1.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct OutputCustomEvent {
16    #[serde(rename = "_id")]
17    pub _id: String,
18    #[serde(rename = "_type")]
19    pub _type: String,
20    #[serde(rename = "_createdBy")]
21    pub _created_by: String,
22    #[serde(rename = "_createdAt")]
23    pub _created_at: i64,
24    #[serde(rename = "_updatedBy", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
25    pub _updated_by: Option<Option<String>>,
26    #[serde(rename = "_updatedAt", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
27    pub _updated_at: Option<Option<i64>>,
28    #[serde(rename = "date")]
29    pub date: i64,
30    #[serde(rename = "endDate", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
31    pub end_date: Option<Option<i64>>,
32    #[serde(rename = "title")]
33    pub title: String,
34    #[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
35    pub description: Option<Option<String>>,
36}
37
38impl OutputCustomEvent {
39    pub fn new(_id: String, _type: String, _created_by: String, _created_at: i64, date: i64, title: String) -> OutputCustomEvent {
40        OutputCustomEvent {
41            _id,
42            _type,
43            _created_by,
44            _created_at,
45            _updated_by: None,
46            _updated_at: None,
47            date,
48            end_date: None,
49            title,
50            description: None,
51        }
52    }
53}
54