Skip to main content

authentik_client/models/
outpost_default_config.rs

1/*
2 * authentik
3 *
4 * Making authentication simple.
5 *
6 * The version of the OpenAPI document: 2025.8.6
7 * Contact: hello@goauthentik.io
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// OutpostDefaultConfig : Global default outpost config
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct OutpostDefaultConfig {
17    #[serde(rename = "config")]
18    pub config: std::collections::HashMap<String, serde_json::Value>,
19}
20
21impl OutpostDefaultConfig {
22    /// Global default outpost config
23    pub fn new(config: std::collections::HashMap<String, serde_json::Value>) -> OutpostDefaultConfig {
24        OutpostDefaultConfig { config }
25    }
26}