authentik-client 2026.2.3

Making authentication simple.
Documentation
/*
 * authentik
 *
 * Making authentication simple.
 *
 * The version of the OpenAPI document: 2026.2.3
 * Contact: hello@goauthentik.io
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum VendorEnum {
    #[serde(rename = "goauthentik.io/@merged")]
    GoauthentikIoSlashAtMerged,
    #[serde(rename = "goauthentik.io/platform")]
    GoauthentikIoSlashPlatform,
    #[serde(rename = "fleetdm.com")]
    FleetdmCom,
}

impl std::fmt::Display for VendorEnum {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        match self {
            Self::GoauthentikIoSlashAtMerged => write!(f, "goauthentik.io/@merged"),
            Self::GoauthentikIoSlashPlatform => write!(f, "goauthentik.io/platform"),
            Self::FleetdmCom => write!(f, "fleetdm.com"),
        }
    }
}

impl Default for VendorEnum {
    fn default() -> VendorEnum {
        Self::GoauthentikIoSlashAtMerged
    }
}