@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
36 lines (35 loc) • 655 B
TypeScript
/**
* WorkflowResponse PI_JSON
*/
export interface WorkflowResponse {
/**
* Workflows
*/
workflows: Workflow[];
}
export interface Workflow {
/**
* the id of the workflow
*/
id: string;
/**
* The name of the workflow
*/
name: string;
/**
* The description of the workflow
*/
description: string;
/**
* The whatif template id
*/
whatIfTemplateId?: string;
/**
* the minimum forecast length of the workflow
*/
minimumForecastLength?: string;
/**
* the maximum forecast length of the workflow
*/
maximumForecastLength?: string;
}