36 lines
531 B
Markdown
36 lines
531 B
Markdown
---
|
|
title: msg_copy
|
|
description: msg_copy attributes, type and example
|
|
---
|
|
## Constructor: msg\_copy
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|:-------------:|---------:|
|
|
|orig\_message|[MTMessage](../types/MTMessage.md) | Yes|
|
|
|
|
|
|
|
|
### Type: [MessageCopy](../types/MessageCopy.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$msg_copy = ['_' => 'msg_copy', 'orig_message' => MTMessage, ];
|
|
```
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
msg_copy={_='msg_copy', orig_message=MTMessage, }
|
|
|
|
```
|
|
|
|
|