(fields)
| 3443 | |
| 3444 | @staticmethod |
| 3445 | def __from_json__(fields): |
| 3446 | if fields is None: |
| 3447 | return None |
| 3448 | return AccountMessage( |
| 3449 | None if "body" not in fields else Account.__from_json__(fields["body"]), |
| 3450 | ) |
| 3451 | |
| 3452 | # Get the FBE type |
| 3453 | @property |
nothing calls this directly
no test coverage detected