42 lines
1.0 KiB
Markdown
42 lines
1.0 KiB
Markdown
|
---
|
||
|
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|List containing basic info on chat|
|
||
|
|users|Array of [User](../types/User.md) | Yes|List of users mentioned above|
|
||
|
|
||
|
|
||
|
|
||
|
### 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}}
|
||
|
|
||
|
```
|
||
|
|
||
|
|