Interface ForumTopicInfo

Contains basic information about a forum topic.

interface ForumTopicInfo {
    @type: "forumTopicInfo";
    creation_date: number;
    creator_id: MessageSender;
    icon: ForumTopicIcon;
    is_closed?: boolean;
    is_general?: boolean;
    is_hidden?: boolean;
    is_outgoing?: boolean;
    message_thread_id: number;
    name: string;
}

Properties

@type: "forumTopicInfo"
creation_date: number

Point in time (Unix timestamp) when the topic was created.

creator_id: MessageSender

Identifier of the creator of the topic.

Icon of the topic.

is_closed?: boolean

True, if the topic is closed.

is_general?: boolean

True, if the topic is the General topic list.

is_hidden?: boolean

True, if the topic is hidden above the topic list and closed; for General topic only.

is_outgoing?: boolean

True, if the topic was created by the current user.

message_thread_id: number

Message thread identifier of the topic.

name: string

Name of the topic.