/** * Encapsulates the message that is sent when a set of Process Instances was deleted. */ export type ProcessInstancesDeletedMessage = { /** * Contains the IDs of the deleted process instances. */ processInstanceIds: Array; };