Interface RawPrivateChannel

interface RawPrivateChannel {
    flags: number;
    id: string;
    last_message_id: null | string;
    last_pin_timestamp?: null | string;
    recipients: RawUser[];
    type: DM;
}

Hierarchy

Properties

flags: number
id: string
last_message_id: null | string
last_pin_timestamp?: null | string
recipients: RawUser[]
type: DM