(document)
| 1308 | # Create struct from JSON value |
| 1309 | @staticmethod |
| 1310 | def from_json(document): |
| 1311 | return Balance.__from_json__(json.loads(document)) |
| 1312 | |
| 1313 | @staticmethod |
| 1314 | def __from_json__(fields): |
nothing calls this directly
no test coverage detected