import { BaseObject } from './baseObject';
import { ReportQuery } from './reportQuery';
export interface ReportJob extends BaseObject {
    id?: number;
    reportQuery?: ReportQuery;
}
