The result of the task execution.

interface RemoveOptionFromIssuesResult {
    errors?: SimpleErrorCollection;
    modifiedIssues?: number[];
    unmodifiedIssues?: number[];
}

Properties

A collection of errors related to unchanged issues. The collection size is limited, which means not all errors may be returned.

modifiedIssues?: number[]

The IDs of the modified issues.

unmodifiedIssues?: number[]

The IDs of the unchanged issues, those issues where errors prevent modification.