Serializes this instance to a Python dictionary.
(self)
| 253 | return str(self.to_json_string()) |
| 254 | |
| 255 | def to_dict(self): |
| 256 | """Serializes this instance to a Python dictionary.""" |
| 257 | output = copy.deepcopy(self.__dict__) |
| 258 | return output |
| 259 | |
| 260 | def to_json_string(self): |
| 261 | """Serializes this instance to a JSON string.""" |