1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 06:16:55 +01:00
MadelineProto/docs/MTProto_docs/constructors/msg_container.md

43 lines
692 B
Markdown
Raw Normal View History

---
title: msg_container
description: msg_container attributes, type and example
---
## Constructor: msg\_container
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|
2017-09-29 15:50:59 +02:00
|messages|Array of [MTmessage](../types/MTmessage.md) | Yes|
### Type: [MessageContainer](../types/MessageContainer.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$msg_container = ['_' => 'msg_container', 'messages' => [MTmessage]];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "msg_container", "messages": [MTmessage]}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
msg_container={_='msg_container', messages={MTmessage}}
```