Interface JSONPrivateChannel

interface JSONPrivateChannel {
    createdAt: number;
    id: string;
    lastMessageID: null | string;
    messages: string[];
    recipient: JSONUser;
    type: DM;
}

Hierarchy (view full)

Properties

createdAt: number
id: string
lastMessageID: null | string
messages: string[]
recipient: JSONUser
type: DM