* Convert JSON to struct * @param {!string} json JSON string * @returns {!object} Struct value for JSON
(json)
| 13961 | * @returns {!object} Struct value for JSON |
| 13962 | */ |
| 13963 | static fromJSON (json) { |
| 13964 | return StructArray.fromObject(JSON.parse(json)) |
| 13965 | } |
| 13966 | |
| 13967 | /** |
| 13968 | * Create struct from object value |
nothing calls this directly
no test coverage detected