(document)
| 2586 | # Create struct from JSON value |
| 2587 | @staticmethod |
| 2588 | def from_json(document): |
| 2589 | return OrderMessage.__from_json__(json.loads(document)) |
| 2590 | |
| 2591 | @staticmethod |
| 2592 | def __from_json__(fields): |
nothing calls this directly
no test coverage detected