Interface JSONGroupChannel

interface JSONGroupChannel {
    applicationID: string;
    createdAt: number;
    icon: null | string;
    id: string;
    managed: boolean;
    name: null | string;
    nicks: Record<"id" | "nick", string>[];
    ownerID: string;
    recipients: JSONUser[];
    type: GROUP_DM;
}

Hierarchy (view full)

Properties

applicationID: string
createdAt: number
icon: null | string
id: string
managed: boolean
name: null | string
nicks: Record<"id" | "nick", string>[]
ownerID: string
recipients: JSONUser[]
type: GROUP_DM