Describes a work item type category.

interface WorkItemTypeCategory {
    _links?: any;
    defaultWorkItemType?: WorkItemTypeReference;
    name?: string;
    referenceName?: string;
    url?: string;
    workItemTypes?: WorkItemTypeReference[];
}

Hierarchy (View Summary)

Properties

_links?: any

Link references to related REST resources.

defaultWorkItemType?: WorkItemTypeReference

Gets or sets the default type of the work item.

name?: string

The name of the category.

referenceName?: string

The reference name of the category.

url?: string

REST URL for the resource.

workItemTypes?: WorkItemTypeReference[]

The work item types that belong to the category.