Class ThreadChannel<T>

Represents a guild thread channel.

Type Parameters

Hierarchy

Accessors

  • get mention(): string
  • A string that will mention this channel.

    Returns string

Constructors

Methods

  • Add a reaction to a message in this thread.

    Parameters

    • messageID: string

      The ID of the message to add a reaction to.

    • emoji: string

      The reaction to add to the message. name:id for custom emojis, and the unicode codepoint for default emojis.

    Returns Promise<void>

  • Delete a message in this thread.

    Parameters

    • messageID: string

      The ID of the message to delete.

    • Optional reason: string

      The reason for deleting the message.

    Returns Promise<void>

  • Bulk delete messages in this thread.

    Parameters

    • messageIDs: string[]

      The IDs of the messages to delete. Any duplicates or messages older than two weeks will cause an error.

    • Optional reason: string

      The reason for deleting the messages.

    Returns Promise<number>

  • Remove a reaction from a message in this thread.

    Parameters

    • messageID: string

      The ID of the message to remove a reaction from.

    • emoji: string

      The reaction to remove from the message. name:id for custom emojis, and the unicode codepoint for default emojis.

    • user: string = "@me"

      The user to remove the reaction from, @me for the current user (default).

    Returns Promise<void>

  • Remove all, or a specific emoji's reactions from a message.

    Parameters

    • messageID: string

      The ID of the message to remove reactions from.

    • Optional emoji: string

      The reaction to remove from the message. name:id for custom emojis, and the unicode codepoint for default emojis. Omit to remove all reactions.

    Returns Promise<void>

  • Get the users who reacted with a specific emoji on a message.

    Parameters

    • messageID: string

      The ID of the message to get reactions from.

    • emoji: string

      The reaction to remove from the message. name:id for custom emojis, and the unicode codepoint for default emojis.

    • Optional options: GetReactionsOptions

      The options for getting the reactions.

    Returns Promise<User[]>

  • Get the permissions of a member. If providing an id, the member must be cached. The parent channel must be cached as threads themselves do not have permissions.

    Parameters

    • member: string | Member

      The member to get the permissions of.

    Returns Permission

  • Pin a message in this thread.

    Parameters

    • messageID: string

      The ID of the message to pin.

    • Optional reason: string

      The reason for pinning the message.

    Returns Promise<void>

  • Unpin a message in this thread.

    Parameters

    • messageID: string

      The ID of the message to unpin.

    • Optional reason: string

      The reason for unpinning the message.

    Returns Promise<void>

Properties

flags: number

The flags for this thread channel.

guildID: string

The id of the guild this channel is in.

id: string
lastMessage?: null | Message<T>

The last message sent in this channel. This will only be present if a message has been sent within the current session.

lastMessageID: null | string

The ID of last message sent in this channel.

memberCount: number

The approximate number of members in this thread. Stops counting after 50.

members: ThreadMember[]

The members of this thread.

messageCount: number

The number of messages (not including the initial message or deleted messages) in the thread. Stops counting after 50.

The cached messages in this channel.

name: string

The name of this channel.

owner?: User

The owner of this thread.

ownerID: string

The ID of the owner of this thread.

parentID: string

The ID of the parent of this channel, if applicable.

rateLimitPerUser: number

The amount of seconds between non-moderators sending messages.

The thread metadata associated with this thread.

totalMessageSent: number

The total number of messages ever sent in the thread. Includes deleted messages.

The type of this channel.