/** * 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 DataReportFilterDto */ export interface DataReportFilterDto { /** * Name of the filter (name of the Athena view column). * @type {string} * @memberof DataReportFilterDto */ 'name': string; /** * Optional description of the data report filter. * @type {string} * @memberof DataReportFilterDto */ 'description'?: string; /** * Type of the filter column (int, float, datetime or string). * @type {string} * @memberof DataReportFilterDto */ 'type': string; /** * Condition the filter uses (=, in or between). * @type {string} * @memberof DataReportFilterDto */ 'condition': string; /** * Set to true if the filter is mandatory when executing the report. * @type {boolean} * @memberof DataReportFilterDto */ 'isMandatory'?: boolean; }