/** * 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 { DataReportFilterDto } from './data-report-filter-dto'; /** * * @export * @interface CreateDataReportRequestDto */ export interface CreateDataReportRequestDto { /** * Unique identifier for the object. * @type {string} * @memberof CreateDataReportRequestDto */ '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 CreateDataReportRequestDto */ 'slug': string; /** * Optional description of the data report. * @type {string} * @memberof CreateDataReportRequestDto */ 'description'?: string; /** * Athena view or query to use in the FROM clause of the report query. * @type {string} * @memberof CreateDataReportRequestDto */ '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 CreateDataReportRequestDto */ 'orderByClause'?: string; /** * Optional number of records to return as the report results. * @type {number} * @memberof CreateDataReportRequestDto */ 'limit'?: number; /** * Array with the report filter values. * @type {Array} * @memberof CreateDataReportRequestDto */ 'filters': Array; }