Information about a ForumThread's reaction.

Hierarchy

Constructors

Properties

Accessors

Constructors

Properties

client: Client
emoji: APIEmote

Emote.

Accessors

  • get reactor(): Member | {
        id: string;
    }
  • Cached member. If member isn't cached will return an object with the member's id.

    Returns Member | {
        id: string;
    }

  • get thread(): ForumThread | {
        channelID: string;
        guild: Guild | {
            id?: string;
        };
        id: number;
    }
  • The forum thread where the reaction has been added. If the thread is cached, it'll return a ForumThread component, otherwise it'll return basic information about this thread.

    Returns ForumThread | {
        channelID: string;
        guild: Guild | {
            id?: string;
        };
        id: number;
    }