* Convert JSON to struct * @param {!string} json JSON string * @returns {!object} Struct value for JSON
(json)
| 4806 | * @returns {!object} Struct value for JSON |
| 4807 | */ |
| 4808 | static fromJSON (json) { |
| 4809 | return BalanceMessage.fromObject(JSON.parse(json)) |
| 4810 | } |
| 4811 | |
| 4812 | /** |
| 4813 | * Create struct from object value |
nothing calls this directly
no test coverage detected