The forum channel the topic belongs to.
The raw data of the forum topic.
Optional
cache: booleanWhether to cache the forum topic.
Optional
Readonly
bumpedThe date the forum topic was bumped.
Readonly
channelReadonly
channelThe ID of the channel the forum topic belongs to.
Readonly
clientOptional
Readonly
contentThe content of the forum topic.
Readonly
createdThe date the forum topic was created.
Readonly
createdThe ID of the user that created the forum topic.
Optional
Readonly
createdThe ID of the webhook that created the forum topic.
Optional
Readonly
editedThe date the forum topic was edited.
Readonly
idOptional
Readonly
mentionsThe mentions of the forum topic.
Readonly
rawReadonly
serverThe ID of the server the forum topic belongs to.
Readonly
titleThe title of the forum topic.
The server member that created the forum topic.
The ID of the user that created the forum topic.
The timestamp the forum topic was bumped.
The timestamp the forum topic was created.
The timestamp the forum topic was edited.
Whether the forum topic is cached.
Delete the forum topic.
The deleted forum topic.
forumTopic.delete();
Edit the forum topic.
The edited forum topic.
forumTopic.edit({ title: 'New title' });
The payload of the forum topic.
Fetch the forum topic.
The fetched forum topic.
forumTopic.fetch();
Optional
options: FetchOptionsThe options to fetch the forum topic with.
Fetch the server member that created the forum topic.
The fetched server member.
forumTopic.fetchAuthor();
Optional
options: FetchOptionsThe options to fetch the server member with.
Fetch the server the forum topic belongs to.
The fetched server.
forumTopic.fetchServer();
Optional
options: FetchOptionsThe options to fetch the server with.
Fetch the webhook that created the forum topic.
The fetched webhook.
forumTopic.fetchWebhook();
Optional
options: FetchOptionsThe options to fetch the webhook with.
Lock the forum topic.
The locked forum topic.
forumTopic.lock();
Pin the forum topic.
The pinned forum topic.
forumTopic.pin();
Unlock the forum topic.
The unlocked forum topic.
forumTopic.unlock();
Unpin the forum topic.
The unpinned forum topic.
forumTopic.unpin();
Represents a topic on Guilded.
Example