/* 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. */ import { DataReportFilterValueDto } from './data-report-filter-value-dto'; /** * * @export * @interface RunDataReportRequestDto */ export interface RunDataReportRequestDto { /** * Slug of the report to run * @type {string} * @memberof RunDataReportRequestDto */ 'reportSlug': string; /** * Array with the report filter values. * @type {Array} * @memberof RunDataReportRequestDto */ 'filterValues': Array; }