Interface UpdateChatReadInbox

Incoming messages were read or the number of unread messages has been changed. Subtype of Update.

interface UpdateChatReadInbox {
    @type: "updateChatReadInbox";
    chat_id: number;
    last_read_inbox_message_id: number;
    unread_count: number;
}

Properties

@type: "updateChatReadInbox"
chat_id: number

Chat identifier.

last_read_inbox_message_id: number

Identifier of the last read incoming message.

unread_count: number

The number of unread messages left in the chat.