geoengine_api_client/models/data_path_volume.rs
1/*
2 * Geo Engine API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * Contact: dev@geoengine.de
7 * Generated by: https://openapi-generator.tech
8 */
9
10use crate::models;
11use serde::{Deserialize, Serialize};
12
13#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
14pub struct DataPathVolume {
15 #[serde(rename = "volume")]
16 pub volume: String,
17}
18
19impl DataPathVolume {
20 pub fn new(volume: String) -> DataPathVolume {
21 DataPathVolume {
22 volume,
23 }
24 }
25}
26