| def
  | __init__ (self, flow_element)
Constructor for element data Adds default missing property service if not available.   More...
 | 
| def
  | get (self, key)
get - Get a value (unless in a flowElement's restrictedProperties list) If property not found, call the attached missing property service @type key: string   More...
 | 
 | 
| def
  | __getattr__ (self, key)
Magic getter for a property from the data Allowing user to write for example Data.IsMobile rather than Data.get("IsMobile)   More...
 | 
| def
  | __getitem__ (self, flow_element_key)
Magic method in Python, which when used in a class, allows its instances to use the [] (indexer) operators.   More...
 | 
| def
  | get_internal (self, key)
Returns the requested property from the data Overridden by specific  ElementData instances.   More...
 | 
| def
  | get_properties (self)
Proxy to the data's flowElement properties.   More...
 |