Interface MessageDeleteBulkPacket

interface MessageDeleteBulkPacket {
    d: {
        channel_id: string;
        guild_id?: string;
        ids: string[];
    };
    op: DISPATCH;
    s: number;
    t: "MESSAGE_DELETE_BULK";
}

Hierarchy (view full)

Properties

d op s t

Properties

d: {
    channel_id: string;
    guild_id?: string;
    ids: string[];
}

Type declaration

  • channel_id: string
  • Optional guild_id?: string
  • ids: string[]
s: number
t: "MESSAGE_DELETE_BULK"