@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
24 lines (23 loc) • 548 B
TypeScript
/**
* ImportStatusResponse PI_JSON
*/
export interface ImportStatusResponse {
importStatus: ImportStatus[];
[k: string]: unknown;
}
export interface ImportStatus {
mcId: string;
taskRunId?: string;
workflowId?: string;
workflowName?: string;
directory?: string;
suspended: boolean;
dataFeed: string;
dataFeedName?: string;
dataFeedDescription?: string;
lastImportTime: string;
lastFileImported: string;
fileRead: number;
fileFailed: number;
lastImportTimeBackgroundColor: string;
}