Interface APIForumTopicComment

interface APIForumTopicComment {
    channelId: string;
    content: string;
    createdAt: string;
    createdBy: string;
    forumTopicId: number;
    id: number;
    mentions?: APIMentions;
    updatedAt?: string;
}

Properties

channelId: string

The ID of the forum topic

content: string

The content of the forum topic comment

createdAt: string

The ISO 8601 timestamp that the forum topic comment was created at

createdBy: string

The ID of the user who created this forum topic comment.

forumTopicId: number

The ID of the forum topic

id: number

The ID of the forum topic comment

mentions?: APIMentions

Mentions included in the topic comment.

updatedAt?: string

The ISO 8601 timestamp that the forum topic comment was updated at, if relevant