thehive_client/models/
output_attachment.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 OutputAttachment {
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 = "size")]
31    pub size: i32,
32    #[serde(rename = "contentType")]
33    pub content_type: String,
34    #[serde(rename = "id")]
35    pub id: String,
36    #[serde(rename = "hashes", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
37    pub hashes: Option<Option<Vec<String>>>,
38}
39
40impl OutputAttachment {
41    pub fn new(_id: String, _type: String, _created_by: String, _created_at: i64, name: String, size: i32, content_type: String, id: String) -> OutputAttachment {
42        OutputAttachment {
43            _id,
44            _type,
45            _created_by,
46            _created_at,
47            _updated_by: None,
48            _updated_at: None,
49            name,
50            size,
51            content_type,
52            id,
53            hashes: None,
54        }
55    }
56}
57