/** * @swagger * components: * schemas: * ProcessIsExecutableChangedMessage: * description: The message that is sent whenever a Process was flagged as executable or not executable. * type: object * required: * - processModelId * - isExecutable * properties: * processModelId: * description: Contains the ID of the Process Model whose executable state was changed. * type: string * isExecutable: * description: Contains the new state of the isExecutable flag. * type: boolean */ /** * Encapsulates the message that is sent when a Process was flagged as executable or not executable. */ export type ProcessIsExecutableChangedMessage = { /** * Contains the ID of the Process Model whose executable state was changed. */ processModelId: string; /** * Contains the new state of the isExecutable flag. */ isExecutable: boolean; };