Class VoiceChannelCreateSpec

  • All Implemented Interfaces:
    AuditSpec<discord4j.discordjson.json.ChannelCreateRequest>, Spec<discord4j.discordjson.json.ChannelCreateRequest>

    public class VoiceChannelCreateSpec
    extends Object
    implements AuditSpec<discord4j.discordjson.json.ChannelCreateRequest>
    A spec used to configure and create a VoiceChannel.
    • Constructor Detail

      • VoiceChannelCreateSpec

        public VoiceChannelCreateSpec()
    • Method Detail

      • setBitrate

        public VoiceChannelCreateSpec setBitrate​(int bitrate)
        Sets the bitrate for the created VoiceChannel.
        Parameters:
        bitrate - The maximum amount of bits to send per second in the voice channel, related to the quality of audio. A valid bitrate is a number from 8 to 96.
        Returns:
        This spec.
      • setUserLimit

        public VoiceChannelCreateSpec setUserLimit​(int userLimit)
        Sets the user limit for the created VoiceChannel.

        Users with Permission.MOVE_MEMBERS ignore this limit and can also move other users into the channel past the limit.

        Parameters:
        userLimit - The maximum number of users that can join the voice channel at once.
        Returns:
        This spec.
      • setPosition

        public VoiceChannelCreateSpec setPosition​(int position)
        Sets the position for the created VoiceChannel.
        Parameters:
        position - The raw position for the channel.
        Returns:
        This spec.
      • setPermissionOverwrites

        public VoiceChannelCreateSpec setPermissionOverwrites​(Set<? extends PermissionOverwrite> permissionOverwrites)
        Sets the permission overwrites for the created VoiceChannel.
        Parameters:
        permissionOverwrites - The Set<PermissionOverwrite> which contains overwrites for the channel.
        Returns:
        This spec.
      • setReason

        public VoiceChannelCreateSpec setReason​(@Nullable
                                                String reason)
        Description copied from interface: AuditSpec
        Sets the reason to show in the audit logs when the spec is built.
        Specified by:
        setReason in interface AuditSpec<discord4j.discordjson.json.ChannelCreateRequest>
        Parameters:
        reason - The audit log reason.
        Returns:
        This spec.
      • getReason

        @Nullable
        public String getReason()
        Description copied from interface: AuditSpec
        Returns the current audit log reason set on the spec.
        Specified by:
        getReason in interface AuditSpec<discord4j.discordjson.json.ChannelCreateRequest>
        Returns:
        The current audit log reason.
      • asRequest

        public discord4j.discordjson.json.ChannelCreateRequest asRequest()
        Specified by:
        asRequest in interface Spec<discord4j.discordjson.json.ChannelCreateRequest>