/* 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 DataReportFilterClass */ export interface DataReportFilterClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof DataReportFilterClass */ 'id': number; /** * Internal unique identifier for the report this filter belongs to. * @type {number} * @memberof DataReportFilterClass */ 'dataReportId': number; /** * Name of the filter (name of the Athena view column). * @type {string} * @memberof DataReportFilterClass */ 'name': string; /** * Optional description of the data report filter. * @type {string} * @memberof DataReportFilterClass */ 'description': string; /** * Type of the filter column (int, float, datetime or string). * @type {string} * @memberof DataReportFilterClass */ 'type': string; /** * Condition the filter uses (=, in or between). * @type {string} * @memberof DataReportFilterClass */ 'condition': string; /** * Set to true if the filter is mandatory when executing the report. * @type {boolean} * @memberof DataReportFilterClass */ 'isMandatory': boolean; /** * Time at which the object was created. * @type {string} * @memberof DataReportFilterClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof DataReportFilterClass */ 'updatedAt': string; /** * Identifier of the user who created the record. * @type {string} * @memberof DataReportFilterClass */ 'createdBy': string; /** * Identifier of the user who last updated the record. * @type {string} * @memberof DataReportFilterClass */ 'updatedBy': string; }