Interface WebhooksUpdatePacket

interface WebhooksUpdatePacket {
    d: {
        channel_id: string;
        guild_id: string;
    };
    op: DISPATCH;
    s: number;
    t: "WEBHOOKS_UPDATE";
}

Hierarchy (view full)

Properties

d op s t

Properties

d: {
    channel_id: string;
    guild_id: string;
}

Type declaration

  • channel_id: string
  • guild_id: string
s: number
t: "WEBHOOKS_UPDATE"