/* tslint:disable */ /* eslint-disable */ /** * metrics-sdk-admin * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 5.4.9 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /* tslint:disable */ /* eslint-disable */ /** * metrics-sdk-admin * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 5.4.9 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export const EmployeeRole = { admin: 'admin', customerSupport: 'customerSupport', trainer: 'trainer', frontDesk: 'frontDesk', maintenance: 'maintenance' } as const; export type EmployeeRole = | 'admin' | 'customerSupport' | 'trainer' | 'frontDesk' | 'maintenance' ; export function instanceOfEmployeeRole(value: unknown): boolean { return (Object.values(EmployeeRole) as unknown[]).includes(value); } export function EmployeeRoleFromJSON(json: unknown): EmployeeRole { return EmployeeRoleFromJSONTyped(json, false); } export function EmployeeRoleFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): EmployeeRole { return json as EmployeeRole; } export function EmployeeRoleToJSON(value?: EmployeeRole | null): EmployeeRole | null | undefined { return value; }