import { FlowNodeInstance } from './FlowNodeInstance'; export type SendTaskInstance = FlowNodeInstance & { /** * The name of the message sent by this Send Task. */ messageName: string; /** * Optional: The Correlation ID used by all Process Instances started by the Send Task's Message. */ customCorrelationId?: string; };