1023 B
1023 B
title | description | image | redirect_from |
---|---|---|---|
messages.inactiveChats | Inactive chat list | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/messages_inactiveChats.html |
Constructor: messages.inactiveChats
Inactive chat list
Attributes:
Name | Type | Required | Description |
---|---|---|---|
dates | Array of int | Yes | When was the chat last active |
chats | Array of Chat | Yes | Chat list |
users | Array of User | Yes | Users mentioned in the chat list |
Type: messages.InactiveChats
Example:
$messages.inactiveChats = ['_' => 'messages.inactiveChats', 'dates' => [int, int], 'chats' => [Chat, Chat], 'users' => [User, User]];
Or, if you're into Lua:
messages.inactiveChats={_='messages.inactiveChats', dates={int}, chats={Chat}, users={User}}