/** * @swagger * components: * schemas: * CronjobEnabledChangedMessage: * description: Message that is sent whenever a Cronjob was enabled or disabled. * type: object * required: * - processModelId * - flowNodeId * - enabled * properties: * processModelId: * description: Contains the ID of the Process Model whose executable state was changed. * type: string * flowNodeId: * description: Contains the ID of the Cycle Start Event. * type: string * enabled: * description: The new enabled-state. * type: boolean */ /** * Encapsulates the message that is sent when a Cronjob was enabled or disabled. */ export type CronjobEnabledChangedMessage = { /** * Contains the ID of the Process Model whose executable state was changed. */ processModelId: string; /** * Contains the ID of the Cycle Start Event. */ flowNodeId: string; /** * The new enabled-state. */ enabled: boolean; };