Interface UpdateMessageMentionRead

A message with an unread mention was read. Subtype of Update.

interface UpdateMessageMentionRead {
    @type: "updateMessageMentionRead";
    chat_id: number;
    message_id: number;
    unread_mention_count: number;
}

Properties

@type: "updateMessageMentionRead"
chat_id: number

Chat identifier.

message_id: number

Message identifier.

unread_mention_count: number

The new number of unread mention messages left in the chat.