mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-13 15:47:20 +01:00
36 lines
583 B
Markdown
36 lines
583 B
Markdown
---
|
|
title: msg_container
|
|
description: msg_container attributes, type and example
|
|
---
|
|
## Constructor: msg\_container
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|:-------------:|---------:|
|
|
|messages|Array of [MTmessage](../constructors/MTmessage.md) | Yes|
|
|
|
|
|
|
|
|
### Type: [MessageContainer](../types/MessageContainer.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$msg_container = ['_' => 'msg_container', 'messages' => [MTmessage], ];
|
|
```
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
msg_container={_='msg_container', messages={MTmessage}, }
|
|
|
|
```
|
|
|
|
|