* Convert JSON to struct * @param {!string} json JSON string * @returns {!object} Struct value for JSON
(json)
| 2919 | * @returns {!object} Struct value for JSON |
| 2920 | */ |
| 2921 | static fromJSON (json) { |
| 2922 | return Account.fromObject(JSON.parse(json)) |
| 2923 | } |
| 2924 | |
| 2925 | /** |
| 2926 | * Create struct from object value |
nothing calls this directly
no test coverage detected