MadelineProtoDocs/old_docs/API_docs_v2/constructors/geochats.messagesSlice.md

1.0 KiB

title description image redirect_from
geochats.messagesSlice geochats.messagesSlice attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/geochats_messagesSlice.html

Constructor: geochats.messagesSlice

Back to constructors index

Attributes:

Name Type Required
count int Yes
messages Array of GeoChatMessage Yes
chats Array of Chat Yes
users Array of User Yes

Type: geochats.Messages

Example:

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

Or, if you're into Lua:

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