(fields)
| 3075 | |
| 3076 | @staticmethod |
| 3077 | def __from_json__(fields): |
| 3078 | if fields is None: |
| 3079 | return None |
| 3080 | return BalanceMessage( |
| 3081 | None if "body" not in fields else Balance.__from_json__(fields["body"]), |
| 3082 | ) |
| 3083 | |
| 3084 | # Get the FBE type |
| 3085 | @property |
nothing calls this directly
no test coverage detected