* Convert JSON to struct * @param {!string} json JSON string * @returns {!object} Struct value for JSON
(json)
| 3070 | * @returns {!object} Struct value for JSON |
| 3071 | */ |
| 3072 | static fromJSON (json) { |
| 3073 | return Account.fromObject(JSON.parse(json)) |
| 3074 | } |
| 3075 | |
| 3076 | /** |
| 3077 | * Create struct from object value |
nothing calls this directly
no test coverage detected