🗣️ForumTopic
Component coming from a 'Forum' channel.
Properties
_client
Client
Client
id
Forum topic id
Number
guildID
Guild/server id
String
channelID
Forum channel id
String
name
Topic name/title
String
title
Topic name/title
String
_createdAt
Timestamp (unix epoch time) of the topic's creation.
Number
memberID
ID of the member who created the topic
String
webhookID
ID of the webhook that created the topic (if created by webhook)
String
_updatedAt
Timestamp (unix epoch time) of when the topic got updated. (if updated)
Number|null
bumpedAt
Timestamp (unix epoch time) that the forum topic was bumped at.
String
content
Content of the topic
String
guild
Guild/server the topic is in
Guild
member
Member who created the topic
Member
channel
The forum channel, where the topic is in
Channel
createdAt
string representation of the _createdAt timestamp
Date
updatedAt
string representation of the _updatedAt timestamp
Date|null
createdByWebhook
Boolean that tells you if the forum topic was created by a webhook or not.
Boolean
Constructor
rawData
raw data received from ws and converted to JSON
Object
true
Do not use this constructor unless you know what you're doing. This constructor is used to return you rawdata into component.
Methods
edit(options)
Edit the forum topic.
options
Edit options
Object
true
options.title?
New topic title/name.
String
false
options.content?
New topic content.
String
false
Returns: Promise<CalendarEventRSVP>
delete()
Delete the forum topic.
Returns: Promise<void>
pin()
Pin the forum topic.
Returns: Promise<void>
unpin()
Unpin the forum topic.
Returns: Promise<void>
Last updated