(document)
| 2469 | # Create struct from JSON value |
| 2470 | @staticmethod |
| 2471 | def from_json(document): |
| 2472 | return OrderMessage.__from_json__(json.loads(document)) |
| 2473 | |
| 2474 | @staticmethod |
| 2475 | def __from_json__(fields): |
nothing calls this directly
no test coverage detected