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