/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface GroupRole */ export interface GroupRole { /** * Unique identifier of the role. * @type {string} * @memberof GroupRole */ id: string; /** * Name of the role. * @type {string} * @memberof GroupRole */ name: string; /** * Description of the role. * @type {string} * @memberof GroupRole */ description: string; } /** * Check if a given object implements the GroupRole interface. */ export declare function instanceOfGroupRole(value: object): value is GroupRole; export declare function GroupRoleFromJSON(json: any): GroupRole; export declare function GroupRoleFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupRole; export declare function GroupRoleToJSON(json: any): GroupRole; export declare function GroupRoleToJSONTyped(value?: GroupRole | null, ignoreDiscriminator?: boolean): any;