@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
22 lines (21 loc) • 489 B
TypeScript
/**
* The tasks/{taskid}/taskruns resource is used to get all taskruns for a specified task id.
*/
export interface TaskRun {
id: string;
forecast: boolean;
current: boolean;
status: string;
workflowId: string;
dispatchTime: string;
completionTime: string;
time0: string;
user: string;
description: string;
fssId: string;
outputStartTime: string;
outputEndTime: string;
topologyAssociations: {
layerIds: string[];
};
}