Type Alias TaskRunItemRsp

Represents a single historical task run instance with execution status, timing, and error information.

type TaskRunItemRsp = {
    datasetsCount?: number;
    datasetsErrorCount?: number;
    duration?: string;
    endTime?: string;
    errorMessage?: string;
    originSubStatus?: string;
    runId?: string;
    startTime?: string;
    status?: TaskRunStatus;
    subStatus?: string;
}
Index
datasetsCount?: number

Total number of datasets processed in this run.

datasetsErrorCount?: number

Number of datasets that encountered errors in this run.

duration?: string

Duration of the run in HH:MM:SS format.

endTime?: string

Timestamp indicating when the run ended.

errorMessage?: string

Error message, if the run failed.

originSubStatus?: string

Origin-specific sub-status of the run, when applicable.

runId?: string

Identifier of the run instance.

startTime?: string

Timestamp indicating when the run started.

status?: TaskRunStatus

Execution status of a task run instance.

subStatus?: string

Sub-status of the run, when applicable.