MadelineProtoDocs/old_docs/API_docs_v105/constructors/messages_messagesSlice.md
2019-12-27 17:48:04 +01:00

1.4 KiB

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

Constructor: messages.messagesSlice

Back to constructors index

Incomplete list of messages and auxiliary data.

Attributes:

Name Type Required Description
inexact Bool Optional If set, indicates that the results may be inexact
count int Yes Total number of messages in the list
next_rate int Optional Rate to use in the offset_rate parameter in the next call to messages.searchGlobal
messages Array of Message Yes Messages
chats Array of Chat Yes Chats
users Array of User Yes Users

Type: messages_Messages

Example:

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

Or, if you're into Lua:

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