dtz_core/models/
static_content.rs

1/*
2 * DTZ Core Api
3 *
4 * a generated client for the DTZ Core API
5 *
6 * The version of the OpenAPI document: 1.1.2
7 * Contact: jens@apimeister.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[allow(unused)]
12use crate::models;
13
14
15
16
17#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
18pub struct StaticContent {
19    #[serde(rename = "http", skip_serializing_if = "Option::is_none")]
20    pub http: Option<Box<crate::models::StaticContentHttp>>,
21    #[serde(rename = "https", skip_serializing_if = "Option::is_none")]
22    pub https: Option<Box<crate::models::StaticContentHttp>>,
23}
24
25impl StaticContent {
26    pub fn new() -> StaticContent {
27        StaticContent {
28            http: None,
29            https: None,
30        }
31    }
32}
33
34