Interface ChannelPinsUpdatePacket

interface ChannelPinsUpdatePacket {
    d: {
        channel_id: string;
        guild_id?: string;
        last_pin_timestamp?: null | string;
    };
    op: DISPATCH;
    s: number;
    t: "CHANNEL_PINS_UPDATE";
}

Hierarchy (view full)

Properties

d op s t

Properties

d: {
    channel_id: string;
    guild_id?: string;
    last_pin_timestamp?: null | string;
}

Type declaration

  • channel_id: string
  • Optional guild_id?: string
  • Optional last_pin_timestamp?: null | string
s: number
t: "CHANNEL_PINS_UPDATE"