(fields)
| 1192 | |
| 1193 | @staticmethod |
| 1194 | def __from_json__(fields): |
| 1195 | if fields is None: |
| 1196 | return None |
| 1197 | return Balance( |
| 1198 | None if "currency" not in fields else fields["currency"], |
| 1199 | None if "amount" not in fields else fields["amount"], |
| 1200 | ) |
| 1201 | |
| 1202 | # Get the FBE type |
| 1203 | @property |