Class that represents a work item state result.

interface WorkItemStateResultModel {
    color?: string;
    customizationType?: CustomizationType;
    hidden?: boolean;
    id?: string;
    name?: string;
    order?: number;
    stateCategory?: string;
    url?: string;
}

Properties

color?: string

Work item state color.

customizationType?: CustomizationType

Work item state customization type.

hidden?: boolean

If the Work item state is hidden.

id?: string

Id of the Workitemstate.

name?: string

Work item state name.

order?: number

Work item state order.

stateCategory?: string

Work item state statecategory.

url?: string

Work item state url.