Contract representing a backlog level

interface BacklogLevel {
    categoryReferenceName?: string;
    pluralName?: string;
    workItemStates?: string[];
    workItemTypes?: string[];
}

Properties

categoryReferenceName?: string

Reference name of the corresponding WIT category

pluralName?: string

Plural name for the backlog level

workItemStates?: string[]

Collection of work item states that are included in the plan. The server will filter to only these work item types.

workItemTypes?: string[]

Collection of valid workitem type names for the given backlog level