interface TaskState {
    message?: string;
    state: TaskStateState;
    time: string;
}

Properties

Properties

message?: string

A short message accompanying the state, generally only found when the state is FAILURE

The task state. The typical state sequence is PENDING, then STARTED and finally SUCCESS

time: string

The date and time of the state change