dtz-observability 2.0.3

a generated client for the DTZ Observability API
Documentation
/*
 * DTZ Observability
 *
 * a generated client for the DTZ Observability API
 *
 * Contact: jens@apimeister.com
 * Generated by: https://openapi-generator.tech
 */

#[allow(unused_imports)]
use crate::models;
#[allow(unused_imports)]
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetLogAttributes200ResponseInner {
    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    #[serde(rename = "count", skip_serializing_if = "Option::is_none")]
    pub count: Option<i32>,
}

impl GetLogAttributes200ResponseInner {
    pub fn new() -> GetLogAttributes200ResponseInner {
        GetLogAttributes200ResponseInner {
            name: None,
            count: None,
        }
    }
}