Describes a work item template.

interface WorkItemTemplate {
    _links?: any;
    description?: string;
    fields: { [key: string]: string };
    id?: string;
    name: string;
    url?: string;
    workItemTypeName: string;
}

Hierarchy (View Summary)

Properties

_links?: any

Link references to related REST resources.

description?: string

The description of the work item template.

fields: { [key: string]: string }

Mapping of field and its templated value.

id?: string

The identifier of the work item template.

name: string

The name of the work item template.

url?: string

REST URL for the resource.

workItemTypeName: string

The name of the work item type.