1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * ORY Hydra
 *
 * Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
 *
 * The version of the OpenAPI document: v1.10.3
 * 
 * Generated by: https://openapi-generator.tech
 */

/// PluginMount : PluginMount plugin mount



#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct PluginMount {
    /// description
    #[serde(rename = "Description")]
    pub description: String,
    /// destination
    #[serde(rename = "Destination")]
    pub destination: String,
    /// name
    #[serde(rename = "Name")]
    pub name: String,
    /// options
    #[serde(rename = "Options")]
    pub options: Vec<String>,
    /// settable
    #[serde(rename = "Settable")]
    pub settable: Vec<String>,
    /// source
    #[serde(rename = "Source")]
    pub source: String,
    /// type
    #[serde(rename = "Type")]
    pub _type: String,
}

impl PluginMount {
    /// PluginMount plugin mount
    pub fn new(description: String, destination: String, name: String, options: Vec<String>, settable: Vec<String>, source: String, _type: String) -> PluginMount {
        PluginMount {
            description,
            destination,
            name,
            options,
            settable,
            source,
            _type,
        }
    }
}