/* tslint:disable */ /* eslint-disable */ /** * 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. */ /** * * @export * @interface PermissionClass */ export interface PermissionClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof PermissionClass */ 'id': number; /** * Unique identifier for the object. * @type {string} * @memberof PermissionClass */ 'code': string; /** * Permission module. * @type {string} * @memberof PermissionClass */ 'module': string; /** * Permission entity. * @type {string} * @memberof PermissionClass */ 'entity': string; /** * Permission action. * @type {string} * @memberof PermissionClass */ 'action': string; /** * Time at which the object was created. * @type {string} * @memberof PermissionClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof PermissionClass */ 'updatedAt': string; /** * Identifier of the user who created the record. * @type {string} * @memberof PermissionClass */ 'createdBy': string; /** * Identifier of the user who last updated the record. * @type {string} * @memberof PermissionClass */ 'updatedBy': string; }