/** * @swagger * components: * schemas: * ProcessDeploymentMessage: * description: Message that is sent whenever a Process was deployed or undeployed. * type: object * required: * - processDefinitionId * properties: * processDefinitionId: * description: The ID or the list of IDs of the deployed/undeployed process(es). * oneOf: * - type: string * - type: array * items: * type: string */ /** * Encapsulates the message that is sent when a Process was deployed or undeployed. */ export type ProcessDeploymentMessage = { /** * Contains the ID or the list of IDs of the deployed/undeployed process(es). */ processDefinitionId: string | Array; };