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

    Interface BulkOperationProgress

    interface BulkOperationProgress {
        created?: string;
        failedAccessibleIssues?: {};
        invalidOrInaccessibleIssueCount?: number;
        processedAccessibleIssues?: number[];
        progressPercent?: number;
        started?: string;
        status?: string;
        submittedBy?: Version3Models.User;
        taskId: string;
        totalIssueCount?: number;
        updated?: string;
    }
    Index

    Properties

    created?: string

    A timestamp of when the task was submitted.

    failedAccessibleIssues?: {}

    Map of issue IDs for which the operation failed and that the user has permission to view, to their one or more reasons for failure. These reasons are open-ended text descriptions of the error and are not selected from a predefined list of standard reasons.

    invalidOrInaccessibleIssueCount?: number

    The number of issues that are either invalid or issues that the user doesn't have permission to view, regardless of the success or failure of the operation.

    processedAccessibleIssues?: number[]

    List of issue IDs for which the operation was successful and that the user has permission to view.

    progressPercent?: number

    Progress of the task as a percentage.

    started?: string

    A timestamp of when the task was started.

    status?: string

    The status of the task.

    submittedBy?: Version3Models.User
    taskId: string

    The ID of the task.

    totalIssueCount?: number

    The number of issues that the bulk operation was attempted on.

    updated?: string

    A timestamp of when the task progress was last updated.