2.2 KiB
2.2 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? |
channel_pts | int | Yes | Channel pts |
timeout | int | Optional | Timeout |
top_message | int | Yes | Top message |
top_important_message | int | Yes | Top important message |
read_inbox_max_id | int | Yes | Read inbox max ID |
unread_count | int | Yes | Unread count |
unread_important_count | int | Yes | Unread important 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, 'channel_pts' => int, 'timeout' => int, 'top_message' => int, 'top_important_message' => int, 'read_inbox_max_id' => int, 'unread_count' => int, 'unread_important_count' => int, 'messages' => [Message, Message], 'chats' => [Chat, Chat], 'users' => [User, User]];
PWRTelegram json-encoded version:
{"_": "updates.channelDifferenceTooLong", "final": Bool, "channel_pts": int, "timeout": int, "top_message": int, "top_important_message": int, "read_inbox_max_id": int, "unread_count": int, "unread_important_count": int, "messages": [Message], "chats": [Chat], "users": [User]}
Or, if you're into Lua:
updates_channelDifferenceTooLong={_='updates.channelDifferenceTooLong', final=Bool, channel_pts=int, timeout=int, top_message=int, top_important_message=int, read_inbox_max_id=int, unread_count=int, unread_important_count=int, messages={Message}, chats={Chat}, users={User}}