(fields)
| 2958 | |
| 2959 | @staticmethod |
| 2960 | def __from_json__(fields): |
| 2961 | if fields is None: |
| 2962 | return None |
| 2963 | return BalanceMessage( |
| 2964 | None if "body" not in fields else Balance.__from_json__(fields["body"]), |
| 2965 | ) |
| 2966 | |
| 2967 | # Get the FBE type |
| 2968 | @property |
nothing calls this directly
no test coverage detected