ory_client_client/models/plugin_config_network.rs
1/*
2 * Ory APIs
3 *
4 * 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.
5 *
6 * The version of the OpenAPI document: v0.0.1-alpha.1
7 * Contact: support@ory.sh
8 * Generated by: https://openapi-generator.tech
9 */
10
11/// PluginConfigNetwork : PluginConfigNetwork plugin config network
12
13
14
15#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
16pub struct PluginConfigNetwork {
17 /// type
18 #[serde(rename = "Type")]
19 pub _type: String,
20}
21
22impl PluginConfigNetwork {
23 /// PluginConfigNetwork plugin config network
24 pub fn new(_type: String) -> PluginConfigNetwork {
25 PluginConfigNetwork {
26 _type,
27 }
28 }
29}
30
31