Interface MessageReactionRemovePacket

interface MessageReactionRemovePacket {
    d: {
        burst: boolean;
        burst_colors: string[];
        channel_id: string;
        emoji: PartialEmoji;
        guild_id?: string;
        message_id: string;
        type: ReactionType;
        user_id: string;
    };
    op: DISPATCH;
    s: number;
    t: "MESSAGE_REACTION_REMOVE";
}

Hierarchy (view full)

Properties

d op s t

Properties

d: {
    burst: boolean;
    burst_colors: string[];
    channel_id: string;
    emoji: PartialEmoji;
    guild_id?: string;
    message_id: string;
    type: ReactionType;
    user_id: string;
}

Type declaration

  • burst: boolean
  • burst_colors: string[]
  • channel_id: string
  • emoji: PartialEmoji
  • Optional guild_id?: string
  • message_id: string
  • type: ReactionType
  • user_id: string
s: number
t: "MESSAGE_REACTION_REMOVE"