import { EventMessage } from './BaseMessage'; /** * @swagger * components: * schemas: * MetadataChangedMessage: * description: Message that is sent whenever the metadata of a Correlation or Process Instance was changed by a Flow Node Instance. * allOf: * - $ref: '#/components/schemas/EventMessage' * - type: object * properties: * changedMetadata: * description: The changed metadata. * type: object * additionalProperties: * type: string */ /** * Encapsulates a message for when the metadata of a Correlation or Process Instance was changed by a Flow Node Instance. */ export type MetadataChangedMessage = EventMessage & { changedMetadata: { [key: string]: string; }; };