import type { ReportStatus } from './ReportStatus'; export type ReportData = { /** * Report Name */ display_name?: string; /** * Report Description */ description?: string; /** * Report slug */ report_name?: string; icon?: string; /** * Extra parameters to be passed to the report create view, e.g learner_id */ extra_query_params?: Array; /** * Columns to be available in the report */ result_columns?: Array; /** * Report Status if any available */ status?: ReportStatus; };