(document)
| 1188 | # Create struct from JSON value |
| 1189 | @staticmethod |
| 1190 | def from_json(document): |
| 1191 | return Balance.__from_json__(json.loads(document)) |
| 1192 | |
| 1193 | @staticmethod |
| 1194 | def __from_json__(fields): |
nothing calls this directly
no test coverage detected