/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * 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) * @export */ export declare const Role: { readonly RoleUnspecified: "ROLE_UNSPECIFIED"; readonly RoleViewer: "ROLE_VIEWER"; readonly RoleAdmin: "ROLE_ADMIN"; readonly RoleTech: "ROLE_TECH"; }; export type Role = typeof Role[keyof typeof Role]; export declare function instanceOfRole(value: any): boolean; export declare function RoleFromJSON(json: any): Role; export declare function RoleFromJSONTyped(json: any, ignoreDiscriminator: boolean): Role; export declare function RoleToJSON(value?: Role | null): any; export declare function RoleToJSONTyped(value: any, ignoreDiscriminator: boolean): Role;