(document)
| 1882 | # Create struct from JSON value |
| 1883 | @staticmethod |
| 1884 | def from_json(document): |
| 1885 | return Account.__from_json__(json.loads(document)) |
| 1886 | |
| 1887 | @staticmethod |
| 1888 | def __from_json__(fields): |
nothing calls this directly
no test coverage detected