/** * 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. */ /** * 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 declare const EmployeeRole: { readonly admin: "admin"; readonly customerSupport: "customerSupport"; readonly trainer: "trainer"; readonly frontDesk: "frontDesk"; readonly maintenance: "maintenance"; }; export type EmployeeRole = 'admin' | 'customerSupport' | 'trainer' | 'frontDesk' | 'maintenance'; export declare function instanceOfEmployeeRole(value: unknown): boolean; export declare function EmployeeRoleFromJSON(json: unknown): EmployeeRole; export declare function EmployeeRoleFromJSONTyped(json: unknown, ignoreDiscriminator: boolean): EmployeeRole; export declare function EmployeeRoleToJSON(value?: EmployeeRole | null): EmployeeRole | null | undefined;