import { BaseObject } from './baseObject';
import { ExportFormat } from './exportFormat';
export interface GetReportDownloadURL extends BaseObject {
    reportJobId?: number;
    exportFormat?: ExportFormat;
}
