Describes the next state for a work item.

interface WorkItemNextStateOnTransition {
    errorCode?: string;
    id?: number;
    message?: string;
    stateOnTransition?: string;
}

Properties

errorCode?: string

Error code if there is no next state transition possible.

id?: number

Work item ID.

message?: string

Error message if there is no next state transition possible.

stateOnTransition?: string

Name of the next state on transition.