/* 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 UpdateDashboardRequestDto */ export interface UpdateDashboardRequestDto { /** * Dashboard name * @type {string} * @memberof UpdateDashboardRequestDto */ 'name': string; /** * Dashboard description * @type {string} * @memberof UpdateDashboardRequestDto */ 'description': string; /** * Dashboard quick sight analysis id * @type {string} * @memberof UpdateDashboardRequestDto */ 'quicksightAnalysisId': string; /** * Dashboard quick sight dashboard id * @type {string} * @memberof UpdateDashboardRequestDto */ 'quicksightDashboardId': string; /** * Dashboard group id * @type {number} * @memberof UpdateDashboardRequestDto */ 'dashboardGroupId'?: number; }