Skip to content

property

Represents a Property.

CLASS DESCRIPTION
Property

Properties are item-aware bpmn not visually displayed on a Process diagram.

Classes

Property dataclass

Property(
    *,
    id: Optional[str] = None,
    documentation: list[Documentation] = list(),
    extension_elements: Optional[ExtensionElements] = None,
    data_state: Optional[DataState] = None,
    name: Optional[str] = None,
    item_subject_ref: Optional[str] = None
)

Bases: BaseElement

Properties are item-aware bpmn not visually displayed on a Process diagram.

Only Processes, Activities, and Events may contain Properties.

ATTRIBUTE DESCRIPTION
data_state

A reference to the DataState, which defines certain states for the data contained in the Property.

TYPE: Optional[DataState]

item_subject_ref

Specification of the items that are stored in the Property.

TYPE: Optional[str]

name

Defines the name of the Property.

TYPE: Optional[str]

Attributes

data_state class-attribute instance-attribute
data_state: Optional[DataState] = field(
    default=None,
    metadata={
        "name": "dataState",
        "type": "Element",
        "namespace": "http://www.omg.org/spec/BPMN/20100524/MODEL",
    },
)

A reference to the DataState, which defines certain states for the data contained in the Property.

item_subject_ref class-attribute instance-attribute
item_subject_ref: Optional[str] = field(
    default=None,
    metadata={
        "name": "itemSubjectRef",
        "type": "Attribute",
        "is_reference": True,
    },
)

Specification of the items that are stored in the Property.

name class-attribute instance-attribute
name: Optional[str] = field(default=None, metadata={'type': 'Attribute'})

Defines the name of the Property.

Functions