thehive_client/models/
output_share.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 OutputShare {
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 = "caseId")]
29    pub case_id: String,
30    #[serde(rename = "profileName")]
31    pub profile_name: String,
32    #[serde(rename = "organisationName")]
33    pub organisation_name: String,
34    #[serde(rename = "owner")]
35    pub owner: bool,
36    #[serde(rename = "taskRule")]
37    pub task_rule: String,
38    #[serde(rename = "observableRule")]
39    pub observable_rule: String,
40}
41
42impl OutputShare {
43    pub fn new(_id: String, _type: String, _created_by: String, _created_at: i64, case_id: String, profile_name: String, organisation_name: String, owner: bool, task_rule: String, observable_rule: String) -> OutputShare {
44        OutputShare {
45            _id,
46            _type,
47            _created_by,
48            _created_at,
49            _updated_by: None,
50            _updated_at: None,
51            case_id,
52            profile_name,
53            organisation_name,
54            owner,
55            task_rule,
56            observable_rule,
57        }
58    }
59}
60