Interface GuildRoleDeletePacket

interface GuildRoleDeletePacket {
    d: {
        guild_id: string;
        role_id: string;
    };
    op: DISPATCH;
    s: number;
    t: "GUILD_ROLE_DELETE";
}

Hierarchy (view full)

Properties

d op s t

Properties

d: {
    guild_id: string;
    role_id: string;
}

Type declaration

  • guild_id: string
  • role_id: string
s: number
t: "GUILD_ROLE_DELETE"