linkbreakers 1.52.5

Official Rust SDK for the Linkbreakers API
Documentation
/*
 * Linkbreakers API
 *
 * This is a documentation of all the APIs of Linkbreakers
 *
 * The version of the OpenAPI document: 1.52.5
 * 
 * Generated by: https://openapi-generator.tech
 */

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

/// Role : Role enumerates the built-in permission tiers that control what teammates can manage inside a workspace.   - ROLE_UNSPECIFIED: Role not specified (defaults to viewer permissions)
/// Role enumerates the built-in permission tiers that control what teammates can manage inside a workspace.   - ROLE_UNSPECIFIED: Role not specified (defaults to viewer permissions)
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Role {
    #[serde(rename = "ROLE_UNSPECIFIED")]
    RoleUnspecified,
    #[serde(rename = "ROLE_VIEWER")]
    RoleViewer,
    #[serde(rename = "ROLE_ADMIN")]
    RoleAdmin,
    #[serde(rename = "ROLE_TECH")]
    RoleTech,

}

impl std::fmt::Display for Role {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        match self {
            Self::RoleUnspecified => write!(f, "ROLE_UNSPECIFIED"),
            Self::RoleViewer => write!(f, "ROLE_VIEWER"),
            Self::RoleAdmin => write!(f, "ROLE_ADMIN"),
            Self::RoleTech => write!(f, "ROLE_TECH"),
        }
    }
}

impl Default for Role {
    fn default() -> Role {
        Self::RoleUnspecified
    }
}