@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
16 lines (15 loc) • 440 B
TypeScript
import type { BaseFilter } from "./baseFilter";
export interface ReportFilter extends BaseFilter {
/**
* Identifier of the report module instance id to retrieve
*/
moduleInstanceId: string;
/**
* Identifier of the report module task run id to retrieve
*/
taskRunId: string;
/**
* Identifier of the report id to retrieve unique within a module instance and task run
*/
reportId: number;
}