/* 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 { DataReportFilterClass } from './data-report-filter-class'; /** * * @export * @interface DataReportClass */ export interface DataReportClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof DataReportClass */ 'id': number; /** * Unique identifier for the object. * @type {string} * @memberof DataReportClass */ 'code': string; /** * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @type {string} * @memberof DataReportClass */ 'slug': string; /** * Optional description of the data report. * @type {string} * @memberof DataReportClass */ 'description': string; /** * Athena view or query to use in the FROM clause of the report query. * @type {string} * @memberof DataReportClass */ 'fromClause': string; /** * Optional list of columns to sort the query results by (to use in the ORDER BY clause of the report query). * @type {string} * @memberof DataReportClass */ 'orderByClause': string; /** * Optional number of records to return as the report results. * @type {number} * @memberof DataReportClass */ 'limit': number; /** * List of the report filters. * @type {Array} * @memberof DataReportClass */ 'filters': Array; /** * Time at which the object was created. * @type {string} * @memberof DataReportClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof DataReportClass */ 'updatedAt': string; /** * Identifier of the user who created the record. * @type {string} * @memberof DataReportClass */ 'createdBy': string; /** * Identifier of the user who last updated the record. * @type {string} * @memberof DataReportClass */ 'updatedBy': string; }