import { ISearch } from "./search"; import { ReportDataSource } from "./report_data_source"; /** * The object used to specify the arguments when searching for {@link IReportTemplate}(s). * * @deprecated */ export interface IReportTemplateSearch extends ISearch { /** Gets or sets include report Binary Data for this ReportTemplate. */ includeBinaryData?: boolean; /** Gets or sets search for a ReportTemplate with this ReportDataSource. */ reportDataSource?: ReportDataSource; } //# sourceMappingURL=report_template_search.d.ts.map