MadelineProtoDocs/old_docs/API_docs_v14/constructors/messages.messagesSlice.md

1.2 KiB

title description image redirect_from
messages.messagesSlice Incomplete list of messages and auxiliary data. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/messages_messagesSlice.html

Constructor: messages.messagesSlice

Back to constructors index

Incomplete list of messages and auxiliary data.

Attributes:

Name Type Required Description
count int Yes Total number of messages in the list
messages Array of Message Yes List of messages
chats Array of Chat Yes List of chats mentioned in messages
users Array of User Yes List of users mentioned in messages and chats

Type: messages.Messages

Example:

$messages.messagesSlice = ['_' => 'messages.messagesSlice', 'count' => int, 'messages' => [Message, Message], 'chats' => [Chat, Chat], 'users' => [User, User]];

Or, if you're into Lua:

messages.messagesSlice={_='messages.messagesSlice', count=int, messages={Message}, chats={Chat}, users={User}}