Add a property to event and tore its data type
(self, name, val, datatype)
| 38 | __repr__ = __str__ |
| 39 | |
| 40 | def add_property(self, name, val, datatype): |
| 41 | """ |
| 42 | Add a property to event and tore its data type |
| 43 | """ |
| 44 | setattr(self, name, val) |
| 45 | self.data_types[name] = datatype |
| 46 | |
| 47 | def get_event_props_as_fields_dict(self): |
| 48 | """ |
no outgoing calls
no test coverage detected