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