2019-06-23 13:07:51 +02:00
|
|
|
---
|
|
|
|
title: messages.peerDialogs
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Dialog info of multiple peers
|
2019-06-23 13:07:51 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
2019-12-27 18:46:25 +01:00
|
|
|
redirect_from: /API_docs/constructors/messages_peerDialogs.html
|
2019-06-23 13:07:51 +02:00
|
|
|
---
|
|
|
|
# Constructor: messages.peerDialogs
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Dialog info of multiple peers
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|dialogs|Array of [Dialog](../types/Dialog.md) | Yes|Dialogs|
|
|
|
|
|messages|Array of [Message](../types/Message.md) | Yes|Messages|
|
|
|
|
|chats|Array of [Chat](../types/Chat.md) | Yes|Chats|
|
|
|
|
|users|Array of [User](../types/User.md) | Yes|Users|
|
2019-12-27 18:25:37 +01:00
|
|
|
|state|[updates.State](../constructors/updates.State.md) | Yes|Current [update state of dialog](https://core.telegram.org/api/updates)|
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 18:25:37 +01:00
|
|
|
### Type: [messages.PeerDialogs](../types/messages.PeerDialogs.md)
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
2019-12-27 18:25:37 +01:00
|
|
|
$messages.peerDialogs = ['_' => 'messages.peerDialogs', 'dialogs' => [Dialog, Dialog], 'messages' => [Message, Message], 'chats' => [Chat, Chat], 'users' => [User, User], 'state' => updates.State];
|
2019-06-23 13:07:51 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
2019-12-27 18:25:37 +01:00
|
|
|
messages.peerDialogs={_='messages.peerDialogs', dialogs={Dialog}, messages={Message}, chats={Chat}, users={User}, state=updates.State}
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|