Process.

interface ProcessInfo {
    customizationType?: CustomizationType;
    description?: string;
    isDefault?: boolean;
    isEnabled?: boolean;
    name?: string;
    parentProcessTypeId?: string;
    projects?: ProjectReference[];
    referenceName?: string;
    typeId?: string;
}

Properties

customizationType?: CustomizationType

Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.

description?: string

Description of the process.

isDefault?: boolean

Is the process default.

isEnabled?: boolean

Is the process enabled.

name?: string

Name of the process.

parentProcessTypeId?: string

ID of the parent process.

projects?: ProjectReference[]

Projects in this process to which the user is subscribed to.

referenceName?: string

Reference name of the process.

typeId?: string

The ID of the process.