* Copy struct (shallow copy) * @this {!AccountMessage} * @param {!AccountMessage} other Other struct * @returns {!AccountMessage} This struct
(other)
| 5528 | * @returns {!AccountMessage} This struct |
| 5529 | */ |
| 5530 | copy (other) { |
| 5531 | if (other.body != null) { |
| 5532 | this.body = Account.fromObject(other.body) |
| 5533 | } else { |
| 5534 | this.body = undefined |
| 5535 | } |
| 5536 | return this |
| 5537 | } |
| 5538 | |
| 5539 | /** |
| 5540 | * Clone struct (deep clone) |
nothing calls this directly
no test coverage detected