MadelineProtoDocs/old_docs/API_docs_v105/constructors/messages_chatFull.md

41 lines
942 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: messages.chatFull
2019-12-27 17:48:04 +01:00
description: Extended info on chat and auxiliary data.
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messages.chatFull
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Extended info on chat and auxiliary data.
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|full\_chat|[ChatFull](../types/ChatFull.md) | Yes|Extended info on a chat|
2019-09-13 17:13:55 +02:00
|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}}
```