Jira.js - Jira Cloud API library
    Preparing search index...

    Interface TaskProgressObject

    Details about a task.

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

    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.

    result?: any

    The result of the task execution.

    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.