/* 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 { DataReportFilterSingleValueDto } from './data-report-filter-single-value-dto'; /** * * @export * @interface DataReportFilterValueDto */ export interface DataReportFilterValueDto { /** * Name of the filter * @type {string} * @memberof DataReportFilterValueDto */ 'name': string; /** * Array with the values to use in the report filter condition (a single value array for the \"equality\" filters, a two value array for the \"between\" filter, an array with one or more values for the \"multiselect\" filters). * @type {Array} * @memberof DataReportFilterValueDto */ 'values': Array; }