import { Identity } from '../../DataModels/Iam/index'; import { EventMessage } from './BaseMessage'; /** * Encapsulates the message that is sent when a Message Event was triggered. */ export type MessageEventReachedMessage = EventMessage & { /** * Optional: An identity to use for starting new Processes Instances with a matching Message Start Event. * If none is providecd, the engine will use its internal user. */ identity?: Identity; messageReference: string; };