Class that describes a work item type object

interface ProcessWorkItemType {
    behaviors?: WorkItemTypeBehavior[];
    color?: string;
    customization?: CustomizationType;
    description?: string;
    icon?: string;
    inherits?: string;
    isDisabled?: boolean;
    layout?: FormLayout;
    name?: string;
    referenceName?: string;
    states?: WorkItemStateResultModel[];
    url?: string;
}

Properties

behaviors?: WorkItemTypeBehavior[]
color?: string

Color hexadecimal code to represent the work item type

customization?: CustomizationType

Indicates the type of customization on this work item System work item types are inherited from parent process but not modified Inherited work item types are modified work item that were inherited from parent process Custom work item types are work item types that were created in the current process

description?: string

Description of the work item type

icon?: string

Icon to represent the work item typ

inherits?: string

Reference name of the parent work item type

isDisabled?: boolean

Indicates if a work item type is disabled

layout?: FormLayout
name?: string

Name of the work item type

referenceName?: string

Reference name of work item type

url?: string

Url of the work item type