(document)
| 1765 | # Create struct from JSON value |
| 1766 | @staticmethod |
| 1767 | def from_json(document): |
| 1768 | return Account.__from_json__(json.loads(document)) |
| 1769 | |
| 1770 | @staticmethod |
| 1771 | def __from_json__(fields): |
nothing calls this directly
no test coverage detected