interface Process {
    active: boolean;
    childrenActive: boolean;
    costCenter: string;
    description: string;
    identifier: string;
    name: string;
    parentIdentifier: string;
    priority: number;
    type: ProcessType;
}

Hierarchy (view full)

Properties

active: boolean
childrenActive: boolean
costCenter: string
description: string
identifier: string
name: string
parentIdentifier: string
priority: number