MadelineProto/docs/TD_docs/constructors/chats.md

45 lines
629 B
Markdown
Raw Normal View History

---
title: chats
description: Contains list of chats
---
## Constructor: chats
[Back to constructors index](index.md)
Contains list of chats
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|chats|Array of [chat](../constructors/chat.md) | Yes|List of chats|
### Type: [Chats](../types/Chats.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$chats = ['_' => 'chats', 'chats' => [chat]];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "chats", "chats": [chat]}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
chats={_='chats', chats={chat}}
```