Interface RawStageChannel

interface RawStageChannel {
    bitrate: number;
    guild_id: string;
    id: string;
    last_message_id: null | string;
    name: string;
    nsfw: boolean;
    parent_id: null | string;
    permission_overwrites: RawOverwrite[];
    position: number;
    rate_limit_per_user: number;
    rtc_region: null | string;
    status: null | string;
    topic: null | string;
    type: GUILD_STAGE_VOICE;
    user_limit: number;
    video_quality_mode: VideoQualityModes;
}

Hierarchy

Properties

bitrate: number
guild_id: string
id: string
last_message_id: null | string
name: string
nsfw: boolean
parent_id: null | string
permission_overwrites: RawOverwrite[]
position: number
rate_limit_per_user: number
rtc_region: null | string
status: null | string
topic: null | string
user_limit: number
video_quality_mode: VideoQualityModes