Skip to content

Index

Representation of an Event.

MODULE DESCRIPTION
boundary_event

Represents a boundary event.

catch_event

Represents the BPMN catch event object.

end_event

Represents an end event.

escalation

Represents an Escalation.

implicit_throw_event

Represents an implicit throw event.

intermediate_catch_event

Represents an intermediate catch event.

intermediate_throw_event

Represents an intermediate throw event.

signal

Represents a BPMN signal element.

start_event

Represents a Start Event.

throw_event

Represents the BPMN throw event object.

CLASS DESCRIPTION
Event

The Event element is used to define an event in a BPMN 2.0 process model.

Classes

Event dataclass

Event(
    *,
    id: Optional[str] = None,
    documentation: list[Documentation] = list(),
    extension_elements: Optional[ExtensionElements] = None,
    auditing: Optional[Auditing] = None,
    monitoring: Optional[Monitoring] = None,
    category_value_refs: list[str] = list(),
    name: Optional[str] = None,
    incoming: list[str] = list(),
    outgoing: list[str] = list(),
    properties: list[Property] = list()
)

Bases: FlowNode

The Event element is used to define an event in a BPMN 2.0 process model.

ATTRIBUTE DESCRIPTION
properties

Modeler-defined properties of this event.

TYPE: list[Property]

Attributes

properties class-attribute instance-attribute
properties: list[Property] = field(
    default_factory=list,
    metadata={
        "type": "Element",
        "namespace": "http://www.omg.org/spec/BPMN/20100524/MODEL",
    },
)

Modeler-defined properties of this event.

Functions