(fields)
| 1312 | |
| 1313 | @staticmethod |
| 1314 | def __from_json__(fields): |
| 1315 | if fields is None: |
| 1316 | return None |
| 1317 | return Balance( |
| 1318 | proto.Balance.__from_json__(fields), |
| 1319 | None if "locked" not in fields else fields["locked"], |
| 1320 | ) |
| 1321 | |
| 1322 | # Get the FBE type |
| 1323 | @property |
nothing calls this directly
no test coverage detected