(fields)
| 2473 | |
| 2474 | @staticmethod |
| 2475 | def __from_json__(fields): |
| 2476 | if fields is None: |
| 2477 | return None |
| 2478 | return OrderMessage( |
| 2479 | None if "body" not in fields else Order.__from_json__(fields["body"]), |
| 2480 | ) |
| 2481 | |
| 2482 | # Get the FBE type |
| 2483 | @property |
nothing calls this directly
no test coverage detected