Describes a work item.

interface WorkItem {
    _links?: any;
    commentVersionRef?: WorkItemCommentVersionRef;
    fields?: { [key: string]: any };
    id?: number;
    relations?: WorkItemRelation[];
    rev?: number;
    url?: string;
}

Hierarchy (View Summary)

Properties

_links?: any

Link references to related REST resources.

commentVersionRef?: WorkItemCommentVersionRef

Reference to a specific version of the comment added/edited/deleted in this revision.

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

Map of field and values for the work item.

id?: number

The work item ID.

relations?: WorkItemRelation[]

Relations of the work item.

rev?: number

Revision number of the work item.

url?: string

REST URL for the resource.