MadelineProtoDocs/old_docs/API_docs_v73/constructors/messages_chatFull.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

45 lines
995 B
Markdown

---
title: messages.chatFull
description: messages_chatFull attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messages.chatFull
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|full\_chat|[ChatFull](../types/ChatFull.md) | Yes|
|chats|Array of [Chat](../types/Chat.md) | Yes|
|users|Array of [User](../types/User.md) | Yes|
### Type: [messages\_ChatFull](../types/messages_ChatFull.md)
### Example:
```php
$messages_chatFull = ['_' => 'messages.chatFull', 'full_chat' => ChatFull, 'chats' => [Chat, Chat], 'users' => [User, User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "messages.chatFull", "full_chat": ChatFull, "chats": [Chat], "users": [User]}
```
Or, if you're into Lua:
```lua
messages_chatFull={_='messages.chatFull', full_chat=ChatFull, chats={Chat}, users={User}}
```