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 RetentionCohortCriteriaTimeInterval {
#[serde(rename = "type")]
pub type_: crate::datadogV1::model::RetentionCohortCriteriaTimeIntervalType,
#[serde(rename = "value")]
pub value: crate::datadogV1::model::CalendarInterval,
#[serde(skip)]
#[serde(default)]
pub(crate) _unparsed: bool,
}
impl RetentionCohortCriteriaTimeInterval {
pub fn new(
type_: crate::datadogV1::model::RetentionCohortCriteriaTimeIntervalType,
value: crate::datadogV1::model::CalendarInterval,
) -> RetentionCohortCriteriaTimeInterval {
RetentionCohortCriteriaTimeInterval {
type_,
value,
_unparsed: false,
}
}
}
impl<'de> Deserialize<'de> for RetentionCohortCriteriaTimeInterval {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct RetentionCohortCriteriaTimeIntervalVisitor;
impl<'a> Visitor<'a> for RetentionCohortCriteriaTimeIntervalVisitor {
type Value = RetentionCohortCriteriaTimeInterval;
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 type_: Option<
crate::datadogV1::model::RetentionCohortCriteriaTimeIntervalType,
> = None;
let mut value: Option<crate::datadogV1::model::CalendarInterval> = None;
let mut _unparsed = false;
while let Some((k, v)) = map.next_entry::<String, serde_json::Value>()? {
match k.as_str() {
"type" => {
type_ = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
if let Some(ref _type_) = type_ {
match _type_ {
crate::datadogV1::model::RetentionCohortCriteriaTimeIntervalType::UnparsedObject(_type_) => {
_unparsed = true;
},
_ => {}
}
}
}
"value" => {
value = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
&_ => {
return Err(serde::de::Error::custom(
"Additional properties not allowed",
));
}
}
}
let type_ = type_.ok_or_else(|| M::Error::missing_field("type_"))?;
let value = value.ok_or_else(|| M::Error::missing_field("value"))?;
let content = RetentionCohortCriteriaTimeInterval {
type_,
value,
_unparsed,
};
Ok(content)
}
}
deserializer.deserialize_any(RetentionCohortCriteriaTimeIntervalVisitor)
}
}