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 APIs
*
* Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
*
* The version of the OpenAPI document: v0.0.1-alpha.1
* Contact: support@ory.sh
* 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,
}
}
}