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

Properties

modifiedIssues?: number[]

The IDs of the modified issues.

unmodifiedIssues?: number[]

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