Interface UpdateForumTopic

Information about a topic in a forum chat was changed. Subtype of Update.

interface UpdateForumTopic {
    @type: "updateForumTopic";
    chat_id: number;
    is_pinned?: boolean;
    last_read_inbox_message_id: number;
    last_read_outbox_message_id: number;
    message_thread_id: number;
    notification_settings: ChatNotificationSettings;
}

Properties

@type: "updateForumTopic"
chat_id: number

Chat identifier.

is_pinned?: boolean

True, if the topic is pinned in the topic list.

last_read_inbox_message_id: number

Identifier of the last read incoming message.

last_read_outbox_message_id: number

Identifier of the last read outgoing message.

message_thread_id: number

Message thread identifier of the topic.

notification_settings: ChatNotificationSettings

Notification settings for the topic.