Interface UpdateChatIsMarkedAsUnread

A chat was marked as unread or was read. Subtype of Update.

interface UpdateChatIsMarkedAsUnread {
    @type: "updateChatIsMarkedAsUnread";
    chat_id: number;
    is_marked_as_unread?: boolean;
}

Properties

@type: "updateChatIsMarkedAsUnread"
chat_id: number

Chat identifier.

is_marked_as_unread?: boolean

New value of is_marked_as_unread.