Represents a comment coming from a ForumThread.

Hierarchy

  • Base
    • ForumThreadComment

Constructors

Properties

channelID: string

ID of the forum channel containing this thread.

client: Client

Bot's client.

content: string

The content of the forum thread comment

createdAt: string

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

guildID: null | string

ID of the forum thread's server, if provided.

id: string | number

Item ID

memberID: string

The ID of the user who sent this comment.

threadID: number

The ID of the forum thread

updatedAt?: string

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

Accessors

  • get member(): undefined | User | Member | Promise<Member>
  • Retrieve the member who sent this comment, if cached. If there is no cached member or user, this will make a request which returns a Promise. If the request fails, this will throw an error or return you undefined as a value.

    Returns undefined | User | Member | Promise<Member>

Methods