(fields)
| 2590 | |
| 2591 | @staticmethod |
| 2592 | def __from_json__(fields): |
| 2593 | if fields is None: |
| 2594 | return None |
| 2595 | return OrderMessage( |
| 2596 | None if "body" not in fields else Order.__from_json__(fields["body"]), |
| 2597 | ) |
| 2598 | |
| 2599 | # Get the FBE type |
| 2600 | @property |
nothing calls this directly
no test coverage detected