MadelineProtoDocs/docs/MTProto_docs/constructors/msgs_all_info.md
2020-06-16 17:50:25 +02:00

38 lines
701 B
Markdown

---
title: msgs_all_info
description: msgs_all_info attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: msgs\_all\_info
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|msg\_ids|Array of [long](../types/long.md) | Yes|
|info|[string](../types/string.md) | Yes|
### Type: [MsgsAllInfo](../types/MsgsAllInfo.md)
### Example:
```php
$msgs_all_info = ['_' => 'msgs_all_info', 'msg_ids' => [long, long], 'info' => 'string'];
```
Or, if you're into Lua:
```lua
msgs_all_info={_='msgs_all_info', msg_ids={long}, info='string'}
```