(fields)
| 3560 | |
| 3561 | @staticmethod |
| 3562 | def __from_json__(fields): |
| 3563 | if fields is None: |
| 3564 | return None |
| 3565 | return AccountMessage( |
| 3566 | None if "body" not in fields else Account.__from_json__(fields["body"]), |
| 3567 | ) |
| 3568 | |
| 3569 | # Get the FBE type |
| 3570 | @property |
nothing calls this directly
no test coverage detected