/* 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 DashboardGroupClass */ export interface DashboardGroupClass { /** * Dashboard group id * @type {number} * @memberof DashboardGroupClass */ 'id': number; /** * Dashboard group code * @type {string} * @memberof DashboardGroupClass */ 'code': string; /** * Dashboard group name * @type {string} * @memberof DashboardGroupClass */ 'name': string; /** * Dashboard group parent id * @type {number} * @memberof DashboardGroupClass */ 'parentId': number; /** * Time at which the object was created. * @type {string} * @memberof DashboardGroupClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof DashboardGroupClass */ 'updatedAt': string; /** * Identifier of the user who created the record. * @type {string} * @memberof DashboardGroupClass */ 'createdBy': string; /** * Identifier of the user who last updated the record. * @type {string} * @memberof DashboardGroupClass */ 'updatedBy': string; }