mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 07:36:55 +01:00
632 B
632 B
title | description |
---|---|
chats | Contains list of chats |
Constructor: chats
Contains list of chats
Attributes:
Name | Type | Required | Description |
---|---|---|---|
chats | Array of chat | Yes | List of chats |
Type: Chats
Example:
$chats = ['_' => 'chats', 'chats' => [chat], ];
PWRTelegram json-encoded version:
{"_":"chats","chats":["chat"]}
Or, if you're into Lua:
chats={_='chats', chats={chat}, }