--- title: messages.chatFull description: Extended info on chat and auxiliary data. image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png redirect_from: /API_docs/constructors/messages_chatFull.html --- # Constructor: messages.chatFull [Back to constructors index](index.md) Extended info on chat and auxiliary data. ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |full\_chat|[ChatFull](../types/ChatFull.md) | Yes|Extended info on a chat| |chats|Array of [Chat](../types/Chat.md) | Yes|Chats| |users|Array of [User](../types/User.md) | Yes|Users| ### Type: [messages.ChatFull](../types/messages.ChatFull.md) ### Example: ```php $messages.chatFull = ['_' => 'messages.chatFull', 'full_chat' => ChatFull, 'chats' => [Chat, Chat], 'users' => [User, User]]; ``` Or, if you're into Lua: ```lua messages.chatFull={_='messages.chatFull', full_chat=ChatFull, chats={Chat}, users={User}} ```