Skip to content

flow_element

Represents a BPMN Flow Element.

CLASS DESCRIPTION
FlowElement

FlowElement is the abstract super class for all bpmn that can appear in a Process flow.

Classes

FlowElement dataclass

FlowElement(
    *,
    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
)

Bases: BaseElement

FlowElement is the abstract super class for all bpmn that can appear in a Process flow.

Functions