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 MetricsQueryResponse {
#[serde(rename = "error")]
pub error: Option<String>,
#[serde(rename = "from_date")]
pub from_date: Option<i64>,
#[serde(rename = "group_by")]
pub group_by: Option<Vec<String>>,
#[serde(rename = "message")]
pub message: Option<String>,
#[serde(rename = "query")]
pub query: Option<String>,
#[serde(rename = "res_type")]
pub res_type: Option<String>,
#[serde(rename = "series")]
pub series: Option<Vec<crate::datadogV1::model::MetricsQueryMetadata>>,
#[serde(rename = "status")]
pub status: Option<String>,
#[serde(rename = "to_date")]
pub to_date: Option<i64>,
#[serde(flatten)]
pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
#[serde(skip)]
#[serde(default)]
pub(crate) _unparsed: bool,
}
impl MetricsQueryResponse {
pub fn new() -> MetricsQueryResponse {
MetricsQueryResponse {
error: None,
from_date: None,
group_by: None,
message: None,
query: None,
res_type: None,
series: None,
status: None,
to_date: None,
additional_properties: std::collections::BTreeMap::new(),
_unparsed: false,
}
}
pub fn error(mut self, value: String) -> Self {
self.error = Some(value);
self
}
pub fn from_date(mut self, value: i64) -> Self {
self.from_date = Some(value);
self
}
pub fn group_by(mut self, value: Vec<String>) -> Self {
self.group_by = Some(value);
self
}
pub fn message(mut self, value: String) -> Self {
self.message = Some(value);
self
}
pub fn query(mut self, value: String) -> Self {
self.query = Some(value);
self
}
pub fn res_type(mut self, value: String) -> Self {
self.res_type = Some(value);
self
}
pub fn series(mut self, value: Vec<crate::datadogV1::model::MetricsQueryMetadata>) -> Self {
self.series = Some(value);
self
}
pub fn status(mut self, value: String) -> Self {
self.status = Some(value);
self
}
pub fn to_date(mut self, value: i64) -> Self {
self.to_date = Some(value);
self
}
pub fn additional_properties(
mut self,
value: std::collections::BTreeMap<String, serde_json::Value>,
) -> Self {
self.additional_properties = value;
self
}
}
impl Default for MetricsQueryResponse {
fn default() -> Self {
Self::new()
}
}
impl<'de> Deserialize<'de> for MetricsQueryResponse {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct MetricsQueryResponseVisitor;
impl<'a> Visitor<'a> for MetricsQueryResponseVisitor {
type Value = MetricsQueryResponse;
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 error: Option<String> = None;
let mut from_date: Option<i64> = None;
let mut group_by: Option<Vec<String>> = None;
let mut message: Option<String> = None;
let mut query: Option<String> = None;
let mut res_type: Option<String> = None;
let mut series: Option<Vec<crate::datadogV1::model::MetricsQueryMetadata>> = None;
let mut status: Option<String> = None;
let mut to_date: 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() {
"error" => {
if v.is_null() {
continue;
}
error = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"from_date" => {
if v.is_null() {
continue;
}
from_date = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"group_by" => {
if v.is_null() {
continue;
}
group_by = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"message" => {
if v.is_null() {
continue;
}
message = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"query" => {
if v.is_null() {
continue;
}
query = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"res_type" => {
if v.is_null() {
continue;
}
res_type = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"series" => {
if v.is_null() {
continue;
}
series = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"status" => {
if v.is_null() {
continue;
}
status = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"to_date" => {
if v.is_null() {
continue;
}
to_date = 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 content = MetricsQueryResponse {
error,
from_date,
group_by,
message,
query,
res_type,
series,
status,
to_date,
additional_properties,
_unparsed,
};
Ok(content)
}
}
deserializer.deserialize_any(MetricsQueryResponseVisitor)
}
}