Describes a work item type.

interface WorkItemType {
    _links?: any;
    color?: string;
    description?: string;
    fieldInstances?: WorkItemTypeFieldInstance[];
    fields?: WorkItemTypeFieldInstance[];
    icon?: WorkItemIcon;
    isDisabled?: boolean;
    name?: string;
    referenceName?: string;
    states?: WorkItemStateColor[];
    transitions?: { [key: string]: WorkItemStateTransition[] };
    url?: string;
    xmlForm?: string;
}

Hierarchy (View Summary)

Properties

_links?: any

Link references to related REST resources.

color?: string

The color.

description?: string

The description of the work item type.

fieldInstances?: WorkItemTypeFieldInstance[]

The fields that exist on the work item type.

The fields that exist on the work item type.

The icon of the work item type.

isDisabled?: boolean

True if work item type is disabled

name?: string

Gets the name of the work item type.

referenceName?: string

The reference name of the work item type.

Gets state information for the work item type.

transitions?: { [key: string]: WorkItemStateTransition[] }

Gets the various state transition mappings in the work item type.

url?: string

REST URL for the resource.

xmlForm?: string

The XML form.