* Convert struct to string * @this {!AccountMessage} * @returns {!string} Struct value string
()
| 5722 | * @returns {!string} Struct value string |
| 5723 | */ |
| 5724 | toString () { |
| 5725 | let result = '' |
| 5726 | result += 'AccountMessage(' |
| 5727 | result += 'body=' |
| 5728 | result += this.body.toString() |
| 5729 | result += ')' |
| 5730 | return result |
| 5731 | } |
| 5732 | |
| 5733 | /** |
| 5734 | * Inspect struct |
no test coverage detected