* Convert struct to string * @this {!Balance} * @returns {!string} Struct value string
()
| 2097 | * @returns {!string} Struct value string |
| 2098 | */ |
| 2099 | toString () { |
| 2100 | let result = '' |
| 2101 | result += 'Balance(' |
| 2102 | result += super.toString() |
| 2103 | result += ',locked=' |
| 2104 | result += this.locked.toString() |
| 2105 | result += ')' |
| 2106 | return result |
| 2107 | } |
| 2108 | |
| 2109 | /** |
| 2110 | * Inspect struct |
no test coverage detected