import { FlowNodeInstance } from './FlowNodeInstance'; export type SubprocessInstance = FlowNodeInstance & { /** * The ID of the Start Event at which the Subprocess started. */ startEventId?: string; /** * The ID of the Process Instance that the Subprocess started. * Only available for Subprocesses that have actually started a Process Instance. */ childProcessInstanceId?: string; };