Interface VoiceChannel

    • Method Detail

      • getUserLimit

        int getUserLimit()
        The maximum amount of Members that can be in this VoiceChannel at once.
        0 - No limit
        Returns:
        The maximum amount of members allowed in this channel at once.
      • getBitrate

        int getBitrate()
        The audio bitrate of the voice audio that is transmitted in this channel. While higher bitrates can be sent to this channel, it will be scaled down by the client.
        Default and recommended value is 64000
        Returns:
        The audio bitrate of this voice channel.
      • createCopy

        @Nonnull
        ChannelAction<VoiceChannel> createCopy​(@Nonnull
                                               Guild guild)
        Description copied from interface: GuildChannel
        Creates a copy of the specified GuildChannel in the specified Guild.
        If the provided target guild is not the same Guild this channel is in then the parent category and permissions will not be copied due to technical difficulty and ambiguity.

        This copies the following elements:

        1. Name
        2. Parent Category (if present)
        3. Voice Elements (Bitrate, Userlimit)
        4. Text Elements (Topic, NSFW, Slowmode)
        5. All permission overrides for Members/Roles

        Possible ErrorResponses caused by the returned RestAction include the following:

        Specified by:
        createCopy in interface GuildChannel
        Parameters:
        guild - The Guild to create the channel in
        Returns:
        A specific ChannelAction
        This action allows to set fields for the new GuildChannel before creating it!