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 PrintReportResponseAttributes {
#[serde(rename = "download_url")]
pub download_url: String,
#[serde(rename = "from_ts")]
pub from_ts: i64,
#[serde(rename = "resource_id")]
pub resource_id: String,
#[serde(rename = "resource_type")]
pub resource_type: crate::datadogV2::model::ReportScheduleResourceType,
#[serde(rename = "template_variables")]
pub template_variables: Vec<crate::datadogV2::model::ReportScheduleTemplateVariable>,
#[serde(rename = "timeframe")]
pub timeframe: Option<String>,
#[serde(rename = "timezone")]
pub timezone: String,
#[serde(rename = "to_ts")]
pub to_ts: i64,
#[serde(flatten)]
pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
#[serde(skip)]
#[serde(default)]
pub(crate) _unparsed: bool,
}
impl PrintReportResponseAttributes {
pub fn new(
download_url: String,
from_ts: i64,
resource_id: String,
resource_type: crate::datadogV2::model::ReportScheduleResourceType,
template_variables: Vec<crate::datadogV2::model::ReportScheduleTemplateVariable>,
timezone: String,
to_ts: i64,
) -> PrintReportResponseAttributes {
PrintReportResponseAttributes {
download_url,
from_ts,
resource_id,
resource_type,
template_variables,
timeframe: None,
timezone,
to_ts,
additional_properties: std::collections::BTreeMap::new(),
_unparsed: false,
}
}
pub fn timeframe(mut self, value: String) -> Self {
self.timeframe = 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 PrintReportResponseAttributes {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct PrintReportResponseAttributesVisitor;
impl<'a> Visitor<'a> for PrintReportResponseAttributesVisitor {
type Value = PrintReportResponseAttributes;
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 download_url: Option<String> = None;
let mut from_ts: Option<i64> = None;
let mut resource_id: Option<String> = None;
let mut resource_type: Option<crate::datadogV2::model::ReportScheduleResourceType> =
None;
let mut template_variables: Option<
Vec<crate::datadogV2::model::ReportScheduleTemplateVariable>,
> = None;
let mut timeframe: Option<String> = None;
let mut timezone: Option<String> = None;
let mut to_ts: Option<i64> = 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() {
"download_url" => {
download_url =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"from_ts" => {
from_ts = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"resource_id" => {
resource_id =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"resource_type" => {
resource_type =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
if let Some(ref _resource_type) = resource_type {
match _resource_type {
crate::datadogV2::model::ReportScheduleResourceType::UnparsedObject(_resource_type) => {
_unparsed = true;
},
_ => {}
}
}
}
"template_variables" => {
template_variables =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"timeframe" => {
if v.is_null() {
continue;
}
timeframe = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"timezone" => {
timezone = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"to_ts" => {
to_ts = 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 download_url =
download_url.ok_or_else(|| M::Error::missing_field("download_url"))?;
let from_ts = from_ts.ok_or_else(|| M::Error::missing_field("from_ts"))?;
let resource_id =
resource_id.ok_or_else(|| M::Error::missing_field("resource_id"))?;
let resource_type =
resource_type.ok_or_else(|| M::Error::missing_field("resource_type"))?;
let template_variables = template_variables
.ok_or_else(|| M::Error::missing_field("template_variables"))?;
let timezone = timezone.ok_or_else(|| M::Error::missing_field("timezone"))?;
let to_ts = to_ts.ok_or_else(|| M::Error::missing_field("to_ts"))?;
let content = PrintReportResponseAttributes {
download_url,
from_ts,
resource_id,
resource_type,
template_variables,
timeframe,
timezone,
to_ts,
additional_properties,
_unparsed,
};
Ok(content)
}
}
deserializer.deserialize_any(PrintReportResponseAttributesVisitor)
}
}