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. |
item_subject_ref |
Specification of the items that are stored in the Property. |
name |
Defines the name of the Property. |
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.