/** * EMIL Tenant Service * The EMIL TenantService API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { PermissionClass } from './permission-class'; /** * * @export * @interface RoleClass */ export interface RoleClass { /** * Unique identifier for the object. * @type {string} * @memberof RoleClass */ 'code': string; /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof RoleClass */ 'id': number; /** * Short description of the role. * @type {string} * @memberof RoleClass */ 'description': string; /** * Role label. * @type {string} * @memberof RoleClass */ 'label': string; /** * Permissions associated with the role. * @type {Array} * @memberof RoleClass */ 'permissions': Array; /** * Time at which the object was created. * @type {string} * @memberof RoleClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof RoleClass */ 'updatedAt': string; /** * Identifier of the user who created the record. * @type {string} * @memberof RoleClass */ 'createdBy': string; /** * Identifier of the user who last updated the record. * @type {string} * @memberof RoleClass */ 'updatedBy': string; }