/* 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 DashboardClass */ export interface DashboardClass { /** * Dashboard id * @type {number} * @memberof DashboardClass */ 'id': number; /** * Dashboard code * @type {string} * @memberof DashboardClass */ 'code': string; /** * Dashboard name * @type {string} * @memberof DashboardClass */ 'name': string; /** * Dashboard description * @type {string} * @memberof DashboardClass */ 'description': string; /** * Dashboard quicksight analysis id * @type {string} * @memberof DashboardClass */ 'quicksightAnalysisId': string; /** * Quicksight dashboard id * @type {string} * @memberof DashboardClass */ 'quicksightDashboardId': string; /** * Dashboard group id * @type {number} * @memberof DashboardClass */ 'dashboardGroupId': number; /** * Created at * @type {string} * @memberof DashboardClass */ 'createdAt': string; /** * Updated at * @type {string} * @memberof DashboardClass */ 'updatedAt': string; /** * Identifier of the user who created the record. * @type {string} * @memberof DashboardClass */ 'createdBy': string; /** * Identifier of the user who last updated the record. * @type {string} * @memberof DashboardClass */ 'updatedBy': string; }