* Convert struct to string * @this {!AccountMessage} * @returns {!string} Struct value string
()
| 5571 | * @returns {!string} Struct value string |
| 5572 | */ |
| 5573 | toString () { |
| 5574 | let result = '' |
| 5575 | result += 'AccountMessage(' |
| 5576 | result += 'body=' |
| 5577 | result += this.body.toString() |
| 5578 | result += ')' |
| 5579 | return result |
| 5580 | } |
| 5581 | |
| 5582 | /** |
| 5583 | * Inspect struct |
no test coverage detected