thehive_client/models/
output_profile.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 OutputProfile {
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 = "name")]
29    pub name: String,
30    #[serde(rename = "editable")]
31    pub editable: bool,
32    #[serde(rename = "isAdmin")]
33    pub is_admin: bool,
34    #[serde(rename = "permissions", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
35    pub permissions: Option<Option<Vec<String>>>,
36}
37
38impl OutputProfile {
39    pub fn new(_id: String, _type: String, _created_by: String, _created_at: i64, name: String, editable: bool, is_admin: bool) -> OutputProfile {
40        OutputProfile {
41            _id,
42            _type,
43            _created_by,
44            _created_at,
45            _updated_by: None,
46            _updated_at: None,
47            name,
48            editable,
49            is_admin,
50            permissions: None,
51        }
52    }
53}
54