Interface InviteDeletePacket

interface InviteDeletePacket {
    d: {
        channel_id: string;
        code: string;
        guild_id?: string;
    };
    op: DISPATCH;
    s: number;
    t: "INVITE_DELETE";
}

Hierarchy (view full)

Properties

d op s t

Properties

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

Type declaration

  • channel_id: string
  • code: string
  • Optional guild_id?: string
s: number
t: "INVITE_DELETE"