1.8 KiB
1.8 KiB
title | description | image |
---|---|---|
updates.channelDifferenceTooLong | Channel difference too long | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updates.channelDifferenceTooLong
Channel difference too long
Attributes:
Name | Type | Required | Description |
---|---|---|---|
final | Bool | Optional | Final? |
pts | int | Yes | Pts |
timeout | int | Optional | Timeout |
top_message | int | Yes | Top message |
read_inbox_max_id | int | Yes | Read inbox max ID |
read_outbox_max_id | int | Yes | Read outbox max ID |
unread_count | int | Yes | Unread count |
unread_mentions_count | int | Yes | Unread mentions count |
messages | Array of Message | Yes | Messages |
chats | Array of Chat | Yes | Chats |
users | Array of User | Yes | Users |
Type: updates_ChannelDifference
Example:
$updates_channelDifferenceTooLong = ['_' => 'updates.channelDifferenceTooLong', 'final' => Bool, 'pts' => int, 'timeout' => int, 'top_message' => int, 'read_inbox_max_id' => int, 'read_outbox_max_id' => int, 'unread_count' => int, 'unread_mentions_count' => int, 'messages' => [Message, Message], 'chats' => [Chat, Chat], 'users' => [User, User]];
Or, if you're into Lua:
updates_channelDifferenceTooLong={_='updates.channelDifferenceTooLong', final=Bool, pts=int, timeout=int, top_message=int, read_inbox_max_id=int, read_outbox_max_id=int, unread_count=int, unread_mentions_count=int, messages={Message}, chats={Chat}, users={User}}