MadelineProtoDocs/docs/API_docs/constructors/messages_chatsSlice.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

875 B

title description image
messages.chatsSlice Chats slice https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: messages.chatsSlice

Back to constructors index

Chats slice

Attributes:

Name Type Required Description
count int Yes Count
chats Array of Chat Yes Chats

Type: messages_Chats

Example:

$messages_chatsSlice = ['_' => 'messages.chatsSlice', 'count' => int, 'chats' => [Chat, Chat]];

PWRTelegram json-encoded version:

{"_": "messages.chatsSlice", "count": int, "chats": [Chat]}

Or, if you're into Lua:

messages_chatsSlice={_='messages.chatsSlice', count=int, chats={Chat}}