use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct OutputOrganisation {
#[serde(rename = "_id")]
pub _id: String,
#[serde(rename = "_type")]
pub _type: String,
#[serde(rename = "_createdBy")]
pub _created_by: String,
#[serde(rename = "_createdAt")]
pub _created_at: i64,
#[serde(rename = "_updatedBy", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub _updated_by: Option<Option<String>>,
#[serde(rename = "_updatedAt", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub _updated_at: Option<Option<i64>>,
#[serde(rename = "name")]
pub name: String,
#[serde(rename = "description")]
pub description: String,
#[serde(rename = "taskRule")]
pub task_rule: String,
#[serde(rename = "observableRule")]
pub observable_rule: String,
#[serde(rename = "locked")]
pub locked: bool,
#[serde(rename = "extraData")]
pub extra_data: std::collections::HashMap<String, serde_json::Value>,
#[serde(rename = "links", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub links: Option<Option<Vec<models::InputOrganisationLink>>>,
#[serde(rename = "avatar", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub avatar: Option<Option<String>>,
}
impl OutputOrganisation {
pub fn new(_id: String, _type: String, _created_by: String, _created_at: i64, name: String, description: String, task_rule: String, observable_rule: String, locked: bool, extra_data: std::collections::HashMap<String, serde_json::Value>) -> OutputOrganisation {
OutputOrganisation {
_id,
_type,
_created_by,
_created_at,
_updated_by: None,
_updated_at: None,
name,
description,
task_rule,
observable_rule,
locked,
extra_data,
links: None,
avatar: None,
}
}
}