dtz_core/models/
static_content.rs

1/*
2 * DTZ Core Api
3 *
4 * a generated client for the DTZ Core 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 StaticContent {
17    #[serde(rename = "http", skip_serializing_if = "Option::is_none")]
18    pub http: Option<Box<models::StaticContentHttp>>,
19    #[serde(rename = "https", skip_serializing_if = "Option::is_none")]
20    pub https: Option<Box<models::StaticContentHttp>>,
21}
22
23impl StaticContent {
24    pub fn new() -> StaticContent {
25        StaticContent {
26            http: None,
27            https: None,
28        }
29    }
30}
31