MadelineProtoDocs/docs/MTProto_docs/constructors/msgs_all_info.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

46 lines
893 B
Markdown

---
title: msgs_all_info
description: Msgs all info
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: msgs\_all\_info
[Back to constructors index](index.md)
Msgs all info
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|msg\_ids|Array of [long](../types/long.md) | Yes|Msg IDs|
|info|[bytes](../types/bytes.md) | Yes|Info|
### Type: [MsgsAllInfo](../types/MsgsAllInfo.md)
### Example:
```php
$msgs_all_info = ['_' => 'msgs_all_info', 'msg_ids' => [long, long], 'info' => 'bytes'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "msgs_all_info", "msg_ids": [long], "info": {"_": "bytes", "bytes":"base64 encoded bytes"}}
```
Or, if you're into Lua:
```lua
msgs_all_info={_='msgs_all_info', msg_ids={long}, info='bytes'}
```