Interface TaskProgressBeanRemoveOptionFromIssuesResult

Details about a task.

interface TaskProgressBeanRemoveOptionFromIssuesResult {
    description?: string;
    elapsedRuntime: number;
    finished?: number;
    id: string;
    lastUpdate: number;
    message?: string;
    progress: number;
    result?: RemoveOptionFromIssuesResult;
    self: string;
    started?: number;
    status:
        | "CANCELLED"
        | "ENQUEUED"
        | "RUNNING"
        | "COMPLETE"
        | "FAILED"
        | "CANCEL_REQUESTED"
        | "DEAD";
    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.

The result of the task execution.

self: string

The URL of the task.

started?: number

A timestamp recording when the task was started.

status:
    | "CANCELLED"
    | "ENQUEUED"
    | "RUNNING"
    | "COMPLETE"
    | "FAILED"
    | "CANCEL_REQUESTED"
    | "DEAD"

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.