Interface Channel

interface Channel {
    channel_id: number;
    description: null | string;
    icon: null | string;
    moderated: boolean;
    name: string;
    type:
        | "PUBLIC"
        | "PRIVATE"
        | "MULTIPLAYER"
        | "SPECTATOR"
        | "TEMPORARY"
        | "PM"
        | "GROUP"
        | "ANNOUNCE";
    uuid: null | string;
}

Hierarchy (view full)

Properties

channel_id: number
description: null | string
icon: null | string
moderated: boolean
name: string
type:
    | "PUBLIC"
    | "PRIVATE"
    | "MULTIPLAYER"
    | "SPECTATOR"
    | "TEMPORARY"
    | "PM"
    | "GROUP"
    | "ANNOUNCE"
uuid: null | string