use serde::de::{Error, MapAccess, Visitor};
use serde::{Deserialize, Deserializer, Serialize};
use serde_with::skip_serializing_none;
use std::fmt::{self, Formatter};
#[non_exhaustive]
#[skip_serializing_none]
#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct DORAIncidentObjectAttributes {
#[serde(
rename = "custom_tags",
default,
with = "::serde_with::rust::double_option"
)]
pub custom_tags: Option<Option<Vec<String>>>,
#[serde(rename = "env")]
pub env: Option<String>,
#[serde(rename = "finished_at")]
pub finished_at: Option<i64>,
#[serde(rename = "git")]
pub git: Option<crate::datadogV2::model::DORAGitInfo>,
#[serde(rename = "name")]
pub name: Option<String>,
#[serde(rename = "services")]
pub services: Option<Vec<String>>,
#[serde(rename = "severity")]
pub severity: Option<String>,
#[serde(rename = "started_at")]
pub started_at: i64,
#[serde(rename = "team")]
pub team: Option<String>,
#[serde(rename = "version")]
pub version: Option<String>,
#[serde(flatten)]
pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
#[serde(skip)]
#[serde(default)]
pub(crate) _unparsed: bool,
}
impl DORAIncidentObjectAttributes {
pub fn new(started_at: i64) -> DORAIncidentObjectAttributes {
DORAIncidentObjectAttributes {
custom_tags: None,
env: None,
finished_at: None,
git: None,
name: None,
services: None,
severity: None,
started_at,
team: None,
version: None,
additional_properties: std::collections::BTreeMap::new(),
_unparsed: false,
}
}
pub fn custom_tags(mut self, value: Option<Vec<String>>) -> Self {
self.custom_tags = Some(value);
self
}
pub fn env(mut self, value: String) -> Self {
self.env = Some(value);
self
}
pub fn finished_at(mut self, value: i64) -> Self {
self.finished_at = Some(value);
self
}
pub fn git(mut self, value: crate::datadogV2::model::DORAGitInfo) -> Self {
self.git = Some(value);
self
}
pub fn name(mut self, value: String) -> Self {
self.name = Some(value);
self
}
pub fn services(mut self, value: Vec<String>) -> Self {
self.services = Some(value);
self
}
pub fn severity(mut self, value: String) -> Self {
self.severity = Some(value);
self
}
pub fn team(mut self, value: String) -> Self {
self.team = Some(value);
self
}
pub fn version(mut self, value: String) -> Self {
self.version = Some(value);
self
}
pub fn additional_properties(
mut self,
value: std::collections::BTreeMap<String, serde_json::Value>,
) -> Self {
self.additional_properties = value;
self
}
}
impl<'de> Deserialize<'de> for DORAIncidentObjectAttributes {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct DORAIncidentObjectAttributesVisitor;
impl<'a> Visitor<'a> for DORAIncidentObjectAttributesVisitor {
type Value = DORAIncidentObjectAttributes;
fn expecting(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.write_str("a mapping")
}
fn visit_map<M>(self, mut map: M) -> Result<Self::Value, M::Error>
where
M: MapAccess<'a>,
{
let mut custom_tags: Option<Option<Vec<String>>> = None;
let mut env: Option<String> = None;
let mut finished_at: Option<i64> = None;
let mut git: Option<crate::datadogV2::model::DORAGitInfo> = None;
let mut name: Option<String> = None;
let mut services: Option<Vec<String>> = None;
let mut severity: Option<String> = None;
let mut started_at: Option<i64> = None;
let mut team: Option<String> = None;
let mut version: Option<String> = None;
let mut additional_properties: std::collections::BTreeMap<
String,
serde_json::Value,
> = std::collections::BTreeMap::new();
let mut _unparsed = false;
while let Some((k, v)) = map.next_entry::<String, serde_json::Value>()? {
match k.as_str() {
"custom_tags" => {
custom_tags =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"env" => {
if v.is_null() {
continue;
}
env = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"finished_at" => {
if v.is_null() {
continue;
}
finished_at =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"git" => {
if v.is_null() {
continue;
}
git = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"name" => {
if v.is_null() {
continue;
}
name = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"services" => {
if v.is_null() {
continue;
}
services = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"severity" => {
if v.is_null() {
continue;
}
severity = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"started_at" => {
started_at = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"team" => {
if v.is_null() {
continue;
}
team = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"version" => {
if v.is_null() {
continue;
}
version = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
&_ => {
if let Ok(value) = serde_json::from_value(v.clone()) {
additional_properties.insert(k, value);
}
}
}
}
let started_at = started_at.ok_or_else(|| M::Error::missing_field("started_at"))?;
let content = DORAIncidentObjectAttributes {
custom_tags,
env,
finished_at,
git,
name,
services,
severity,
started_at,
team,
version,
additional_properties,
_unparsed,
};
Ok(content)
}
}
deserializer.deserialize_any(DORAIncidentObjectAttributesVisitor)
}
}