mattermost_rust_client/models/files_limits.rs
1/*
2 * Mattermost API Reference
3 *
4 * There is also a work-in-progress [Postman API reference](https://documenter.getpostman.com/view/4508214/RW8FERUn).
5 *
6 * The version of the OpenAPI document: 4.0.0
7 * Contact: feedback@mattermost.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct FilesLimits {
16 #[serde(rename = "total_storage", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
17 pub total_storage: Option<Option<i64>>,
18}
19
20impl FilesLimits {
21 pub fn new() -> FilesLimits {
22 FilesLimits {
23 total_storage: None,
24 }
25 }
26}
27
28