Skip to main content

dtz_observability/models/
get_metric_metadata_200_response.rs

1/*
2 * DTZ Observability
3 *
4 * a generated client for the DTZ Observability API
5 *
6 * Contact: jens@apimeister.com
7 * Generated by: https://openapi-generator.tech
8 */
9
10#[allow(unused_imports)]
11use crate::models;
12#[allow(unused_imports)]
13use serde::{Deserialize, Serialize};
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct GetMetricMetadata200Response {
17    #[serde(rename = "status", skip_serializing_if = "Option::is_none")]
18    pub status: Option<String>,
19    #[serde(rename = "data", skip_serializing_if = "Option::is_none")]
20    pub data: Option<serde_json::Value>,
21}
22
23impl GetMetricMetadata200Response {
24    pub fn new() -> GetMetricMetadata200Response {
25        GetMetricMetadata200Response {
26            status: None,
27            data: None,
28        }
29    }
30}
31