Details about a task.

interface TaskProgressRemoveOptionFromIssuesResult {
    description?: string;
    elapsedRuntime: number;
    finished?: number;
    id: string;
    lastUpdate: number;
    message?: string;
    progress: number;
    result?: RemoveOptionFromIssuesResult;
    self: string;
    started?: number;
    status: string;
    submitted: number;
    submittedBy: number;
}

Properties

description?: string

The description of the task.

elapsedRuntime: number

The execution time of the task, in milliseconds.

finished?: number

A timestamp recording when the task was finished.

id: string

The ID of the task.

lastUpdate: number

A timestamp recording when the task progress was last updated.

message?: string

Information about the progress of the task.

progress: number

The progress of the task, as a percentage complete.

self: string

The URL of the task.

started?: number

A timestamp recording when the task was started.

status: string

The status of the task.

submitted: number

A timestamp recording when the task was submitted.

submittedBy: number

The ID of the user who submitted the task.