Interface ToggleChatIsMarkedAsUnread

Changes the marked as unread state of a chat. Request type for Tdjson#toggleChatIsMarkedAsUnread.

interface ToggleChatIsMarkedAsUnread {
    @type: "toggleChatIsMarkedAsUnread";
    chat_id: number;
    is_marked_as_unread?: boolean;
}

Properties

@type: "toggleChatIsMarkedAsUnread"
chat_id: number

Chat identifier.

is_marked_as_unread?: boolean

New value of is_marked_as_unread.