/*
* Geo Engine API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.9.0
* Contact: dev@geoengine.de
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DataPathOneOf {
#[serde(rename = "volume")]
pub volume: String,
}
impl DataPathOneOf {
pub fn new(volume: String) -> DataPathOneOf {
DataPathOneOf {
volume,
}
}
}