Interface IntegrationCreatePacket

interface IntegrationCreatePacket {
    d: RawIntegration & {
        guild_id: string;
    };
    op: DISPATCH;
    s: number;
    t: "INTEGRATION_CREATE";
}

Hierarchy (view full)

Properties

d op s t

Properties

d: RawIntegration & {
    guild_id: string;
}

Type declaration

  • guild_id: string
s: number
t: "INTEGRATION_CREATE"