📃ForumTopicComment

Component assigned to a ForumTopic, similar to Message.

Properties

PropertyDescriptionType

_client

Client

id

The ID of the forum topic comment

Number

content

The content of the forum topic comment

String

createdAt

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

String

updatedAt?

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

String

topicID

The ID of the forum topic

Number

createdBy

The ID of the user who created this forum topic comment (Note: If this event has createdByWebhookId present, this field will still be populated, but can be ignored. In this case, the value of this field will always be Ann6LewA)

String

guildID

ID of the forum topic's server, if somehow provided.

String

channelID

ID of the forum channel, if somehow provided.

String

Constructor

new ForumTopicComment(rawData, client, options?)
PropertiesDescriptionTypeRequired?

rawData

raw data received from ws and converted to JSON

Object

true

client

Client

true

options?

additional information we can give to a ForumTopicComment

Object

false

options?.guildID?

id of the comment's server, not provided by Guilded

String | null

false

options?.channelID?

id of the comment's channel, not provided by Guilded

String | null

false

Do not use this constructor unless you know what you're doing. This constructor is used to return you rawdata into component.

Methods

createTopicComment(channelID, options)

Add a comment to the same forum topic as this comment.

PropertiesDescriptionTypeRequired?

channelID

id of the forum channel (needed since Guilded does not provide us this information)

String

true

options

create options

Object

true

options.content

content of the comment

String

true

Returns: Promise<ForumTopicComment>

edit(channelID, options?)

Edit this forum topic's comment.

PropertiesDescriptionTypeRequired?

channelID

id of the forum channel (needed since Guilded does not provide us this information)

String

true

options?

create options

Object

false

options.content

content of the comment

String

false

Returns: Promise<ForumTopicComment>

delete(channelID)

Delete this forum topic comment.

PropertiesDescriptionTypeRequired?

channelID

id of the forum channel (needed since Guilded does not provide us this information)

String

true

Returns: Promise<void>

Last updated