MadelineProto/docs/MTProto_docs/constructors/msgs_all_info.md

37 lines
614 B
Markdown

---
title: msgs_all_info
description: msgs_all_info attributes, type and example
---
## Constructor: msgs\_all\_info
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|msg\_ids|Array of [long](../types/long.md) | Yes|
|info|[bytes](../types/bytes.md) | Yes|
### Type: [MsgsAllInfo](../types/MsgsAllInfo.md)
### Example:
```
$msgs_all_info = ['_' => 'msgs_all_info', 'msg_ids' => [long], 'info' => bytes, ];
```
Or, if you're into Lua:
```
msgs_all_info={_='msgs_all_info', msg_ids={long}, info=bytes, }
```