Skip to main content

dtz_observability/models/
post_log_request_inner_attachments_inner.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 PostLogRequestInnerAttachmentsInner {
17    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
18    pub id: Option<String>,
19    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
20    pub name: Option<String>,
21    #[serde(rename = "contentType", skip_serializing_if = "Option::is_none")]
22    pub content_type: Option<String>,
23}
24
25impl PostLogRequestInnerAttachmentsInner {
26    pub fn new() -> PostLogRequestInnerAttachmentsInner {
27        PostLogRequestInnerAttachmentsInner {
28            id: None,
29            name: None,
30            content_type: None,
31        }
32    }
33}
34