MadelineProto/docs/TD_docs/constructors/updateChatReadInbox.md
2017-07-23 16:33:46 +02:00

1.1 KiB

title description
updateChatReadInbox Some incoming messages was read

Constructor: updateChatReadInbox

Back to constructors index

Some incoming messages was read

Attributes:

Name Type Required Description
chat_id long Yes Chat identifier
last_read_inbox_message_id long Yes Identifier of last read incoming message
unread_count int Yes Number of unread messages left in chat

Type: Update

Example:

$updateChatReadInbox = ['_' => 'updateChatReadInbox', 'chat_id' => long, 'last_read_inbox_message_id' => long, 'unread_count' => int];

PWRTelegram json-encoded version:

{"_": "updateChatReadInbox", "chat_id": long, "last_read_inbox_message_id": long, "unread_count": int}

Or, if you're into Lua:

updateChatReadInbox={_='updateChatReadInbox', chat_id=long, last_read_inbox_message_id=long, unread_count=int}