import { FlowNodeInstance } from './FlowNodeInstance'; export type ReceiveTaskInstance = FlowNodeInstance & { /** * The name of the message that this ReceiveTask is waiting for. */ messageName: string; /** * Optional: Contains the computed value of the triggerValueInToken expression from the model. * If set, the Receive Task Instance will only continue, if the given value matches the triggerValue of the incoming message. */ triggerValue?: string; };