(document)
| 471 | # Create struct from JSON value |
| 472 | @staticmethod |
| 473 | def from_json(document): |
| 474 | return Order.__from_json__(json.loads(document)) |
| 475 | |
| 476 | @staticmethod |
| 477 | def __from_json__(fields): |
nothing calls this directly
no test coverage detected