State¶
Leafs
- 
class 
Components.Component.Properties.Property.State¶ Bases:
EntityClass Hierarchy:
ComponentsComponentPropertiesPropertyStateThis class represents state data.
Operational state data for each property
- 
name¶ System-supplied name of the property – this is typically non-configurable
type: str
config: False
- 
value¶ Property values can take on a variety of types. Signed and unsigned integer types may be provided in smaller sizes, e.g., int8, uint16, etc
type: union of the below types:
type: str
type: bool
type: int
range: -9223372036854775808..9223372036854775807type: int
range: 0..18446744073709551615type:
Decimal64range: -92233720368547758.08..92233720368547758.07config: False
- 
configurable¶ Indication whether the property is user-configurable
type: bool
config: False
-