Interface EditVoiceChannelOptions

interface EditVoiceChannelOptions {
    bitrate?: null | number;
    name?: string;
    nsfw?: null | string;
    parentID?: null | string;
    permissionOverwrites?: null | OverwriteOptions[];
    position?: null | number;
    rtcRegion?: null | string;
    userLimit?: null | number;
    videoQualityMode?: null | VideoQualityModes;
}

Hierarchy (view full)

Properties

bitrate?: null | number

[Stage, Voice] The bitrate of the channel. Minimum 8000.

name?: string

The name of the channel.

nsfw?: null | string

[Announcement, Text, Voice] If the channel is age gated.

parentID?: null | string

[Announcement, Forum, Text, Voice] The id of the parent category channel.

permissionOverwrites?: null | OverwriteOptions[]

Channel or category specific permissions.

position?: null | number

The position of the channel in the channel list.

rtcRegion?: null | string

[Stage, Voice] The voice region id of the channel, null for automatic.

userLimit?: null | number

[Voice] The maximum amount of users in the channel. 0 is unlimited, values range 1-99.

videoQualityMode?: null | VideoQualityModes

[Voice] The video quality mode of the channel.