MadelineProtoDocs/docs/API_docs/constructors/messages.dialogsSlice.md
2024-05-01 14:53:46 +02:00

1.3 KiB

title description nav_exclude image redirect_from
messages.dialogsSlice Incomplete list of dialogs with messages and auxiliary data. true https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/messages_dialogsSlice.html

Constructor: messages.dialogsSlice

Back to constructors index

Incomplete list of dialogs with messages and auxiliary data.

Attributes:

Name Type Required Description
count int Yes Total number of dialogs
dialogs Array of Dialog Yes List of dialogs
messages Array of Message Yes List of last messages from dialogs
chats Array of Chat Yes List of chats mentioned in dialogs
users Array of User Yes List of users mentioned in messages and chats

Type: messages.Dialogs

Example:

$messages_dialogsSlice = ['_' => 'messages.dialogsSlice', 'count' => int, 'dialogs' => [Dialog, Dialog], 'messages' => [Message, Message], 'chats' => [Chat, Chat], 'users' => [User, User]];