Entity Class

An entity object. Can be accessed as a dict or as an obj. The attributes of the entity will be created dynamically. For example, the following are both valid:


   entity = Entity()
   entity.a = 'b'
   entity['x'] = 'y'
Inheritance
builtins.dict
Entity

Constructor

Entity()