(document)
| 504 | # Create struct from JSON value |
| 505 | @staticmethod |
| 506 | def from_json(document): |
| 507 | return Order.__from_json__(json.loads(document)) |
| 508 | |
| 509 | @staticmethod |
| 510 | def __from_json__(fields): |
nothing calls this directly
no test coverage detected