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 DashboardList {
#[serde(rename = "author")]
pub author: Option<crate::datadogV1::model::Creator>,
#[serde(rename = "created")]
pub created: Option<chrono::DateTime<chrono::Utc>>,
#[serde(rename = "dashboard_count")]
pub dashboard_count: Option<i64>,
#[serde(rename = "id")]
pub id: Option<i64>,
#[serde(rename = "is_favorite")]
pub is_favorite: Option<bool>,
#[serde(rename = "modified")]
pub modified: Option<chrono::DateTime<chrono::Utc>>,
#[serde(rename = "name")]
pub name: String,
#[serde(rename = "type")]
pub type_: Option<String>,
#[serde(flatten)]
pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
#[serde(skip)]
#[serde(default)]
pub(crate) _unparsed: bool,
}
impl DashboardList {
pub fn new(name: String) -> DashboardList {
DashboardList {
author: None,
created: None,
dashboard_count: None,
id: None,
is_favorite: None,
modified: None,
name,
type_: None,
additional_properties: std::collections::BTreeMap::new(),
_unparsed: false,
}
}
pub fn author(mut self, value: crate::datadogV1::model::Creator) -> Self {
self.author = Some(value);
self
}
pub fn created(mut self, value: chrono::DateTime<chrono::Utc>) -> Self {
self.created = Some(value);
self
}
pub fn dashboard_count(mut self, value: i64) -> Self {
self.dashboard_count = Some(value);
self
}
pub fn id(mut self, value: i64) -> Self {
self.id = Some(value);
self
}
pub fn is_favorite(mut self, value: bool) -> Self {
self.is_favorite = Some(value);
self
}
pub fn modified(mut self, value: chrono::DateTime<chrono::Utc>) -> Self {
self.modified = Some(value);
self
}
pub fn type_(mut self, value: String) -> Self {
self.type_ = 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 DashboardList {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct DashboardListVisitor;
impl<'a> Visitor<'a> for DashboardListVisitor {
type Value = DashboardList;
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 author: Option<crate::datadogV1::model::Creator> = None;
let mut created: Option<chrono::DateTime<chrono::Utc>> = None;
let mut dashboard_count: Option<i64> = None;
let mut id: Option<i64> = None;
let mut is_favorite: Option<bool> = None;
let mut modified: Option<chrono::DateTime<chrono::Utc>> = None;
let mut name: Option<String> = None;
let mut type_: 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() {
"author" => {
if v.is_null() {
continue;
}
author = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"created" => {
if v.is_null() {
continue;
}
created = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"dashboard_count" => {
if v.is_null() {
continue;
}
dashboard_count =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"id" => {
if v.is_null() {
continue;
}
id = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"is_favorite" => {
if v.is_null() {
continue;
}
is_favorite =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"modified" => {
if v.is_null() {
continue;
}
modified = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"name" => {
name = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"type" => {
if v.is_null() {
continue;
}
type_ = 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 name = name.ok_or_else(|| M::Error::missing_field("name"))?;
let content = DashboardList {
author,
created,
dashboard_count,
id,
is_favorite,
modified,
name,
type_,
additional_properties,
_unparsed,
};
Ok(content)
}
}
deserializer.deserialize_any(DashboardListVisitor)
}
}