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

1.0 KiB

title description image redirect_from
messages.chatFull Extended info on chat and auxiliary data. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/messages_chatFull.html

Constructor: messages.chatFull

Back to constructors index

Extended info on chat and auxiliary data.

Attributes:

Name Type Required Description
full_chat ChatFull Yes Extended info on a chat
chats Array of Chat Yes List containing basic info on chat
users Array of User Yes List of users mentioned above

Type: messages.ChatFull

Example:

$messages.chatFull = ['_' => 'messages.chatFull', 'full_chat' => ChatFull, 'chats' => [Chat, Chat], 'users' => [User, User]];

Or, if you're into Lua:

messages.chatFull={_='messages.chatFull', full_chat=ChatFull, chats={Chat}, users={User}}