MadelineProtoDocs/docs/API_docs/constructors/updates_channelDifferenceTooLong.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

2.1 KiB

title description image
updates.channelDifferenceTooLong Channel difference too long https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updates.channelDifferenceTooLong

Back to constructors index

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]];

PWRTelegram json-encoded version:

{"_": "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]}

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}}