Describes an update to a work item.

interface WorkItemUpdate {
    _links?: any;
    fields?: { [key: string]: WorkItemFieldUpdate };
    id?: number;
    relations?: WorkItemRelationUpdates;
    rev?: number;
    revisedBy?: IdentityReference;
    revisedDate?: Date;
    url?: string;
    workItemId?: number;
}

Hierarchy (View Summary)

Properties

_links?: any

Link references to related REST resources.

fields?: { [key: string]: WorkItemFieldUpdate }

List of updates to fields.

id?: number

ID of update.

List of updates to relations.

rev?: number

The revision number of work item update.

revisedBy?: IdentityReference

Identity for the work item update.

revisedDate?: Date

The work item updates revision date.

url?: string

REST URL for the resource.

workItemId?: number

The work item ID.