import { FlowNodeInstance } from './FlowNodeInstance'; export type CallActivityInstance = FlowNodeInstance & { /** * The ID of the Process Model that the Call Activity should start. */ targetProcessModelId?: string; /** * The ID of the Start Event at which the Call Activity should start the target process. */ startEventId?: string; /** * The ID of the Process Instance that the Call Activity started. * Only available for CallActivites that have actually started a Process Instance. */ childProcessInstanceId?: string; /** * Optional: Overrides the Correlation ID used by the Child Process Instance. * By default, the Child Instance will use the parent's Correlation ID. * * @requires Engine v20.0.0 */ customCorrelationId?: string; };