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 PostLogRequestInnerAttachmentsInner {
    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    #[serde(rename = "contentType", skip_serializing_if = "Option::is_none")]
    pub content_type: Option<String>,
}

impl PostLogRequestInnerAttachmentsInner {
    pub fn new() -> PostLogRequestInnerAttachmentsInner {
        PostLogRequestInnerAttachmentsInner {
            id: None,
            name: None,
            content_type: None,
        }
    }
}