Interface GatewayEvent_ChannelMessageReactionManyDeleted

interface GatewayEvent_ChannelMessageReactionManyDeleted {
    channelId: string;
    count: number;
    deletedBy: string;
    emote?: { id: number; name: string; serverId?: string; url: string };
    messageId: string;
    serverId: string;
}

Properties

channelId: string

The ID of the channel

count: number

The count of reactions that were removed

deletedBy: string

The ID of the user who deleted this reaction

emote?: { id: number; name: string; serverId?: string; url: string }

If present, only reactions of this emote were bulk removed from the message

Type declaration

  • id: number

    Emote ID

    The ID of the emote

  • name: string

    Name

    The name of the emote

  • OptionalserverId?: string

    Server ID

    The ID of the server the emote was created on

  • url: string

    Emote URL Format: media-uri

    The URL of the emote image

messageId: string

The ID of the message

serverId: string

The ID of the server