Class LegacyGuildCreateSpec

    • Constructor Detail

      • LegacyGuildCreateSpec

        public LegacyGuildCreateSpec()
    • Method Detail

      • setName

        public LegacyGuildCreateSpec setName​(String name)
        Sets the name for the created Guild.
        Parameters:
        name - The name of the guild.
        Returns:
        This spec.
      • setRegion

        public LegacyGuildCreateSpec setRegion​(Region.Id regionId)
        Sets the voice region id for the created Guild.
        Parameters:
        regionId - The voice region id for the guild.
        Returns:
        This spec.
      • setRegion

        public LegacyGuildCreateSpec setRegion​(@Nullable
                                               String regionId)
        Sets the voice region id for the created Guild, automatic if null.
        Parameters:
        regionId - The voice region id for the guild, automatic if null.
        Returns:
        This spec.
      • setVerificationLevel

        public LegacyGuildCreateSpec setVerificationLevel​(@Nullable
                                                          Guild.VerificationLevel verificationLevel)
        Sets the verification level required before a member can send messages in the created Guild.
        Parameters:
        verificationLevel - The verification level for the guild.
        Returns:
        This spec.
      • setDefaultMessageNotificationLevel

        public LegacyGuildCreateSpec setDefaultMessageNotificationLevel​(@Nullable
                                                                        Guild.NotificationLevel notificationLevel)
        Sets the default message notification level for the created Guild.
        Parameters:
        notificationLevel - The default notification level for the guild.
        Returns:
        This spec.
      • setExplicitContentFilter

        public LegacyGuildCreateSpec setExplicitContentFilter​(@Nullable
                                                              Guild.ContentFilterLevel explicitContentFilter)
        Sets the explicit content filter level for the created Guild.
        Parameters:
        explicitContentFilter - The explicit content filter level for the guild.
        Returns:
        This spec.
      • addEveryoneRole

        public LegacyGuildCreateSpec addEveryoneRole​(Consumer<? super LegacyRoleCreateSpec> legacyroleSpec)
        Sets the default @everyone role for the created Guild. This shifts all other roles in the list, if present, down by one. It does not replace other @everyone roles already set.

        When creating a guild, Discord automatically takes the first role in the role array as the default @everyone role. See this limitation and others at LegacyGuildCreateSpec.

        Parameters:
        legacyroleSpec - The default @everyone role spec to add to the list of roles.
        Returns:
        This spec.
      • addChannel

        public LegacyGuildCreateSpec addChannel​(String name,
                                                Channel.Type type)
        Adds the channel to the list of channels for the created Guild.
        Parameters:
        name - The name of the channel.
        type - The type of the channel.
        Returns:
        This spec.
      • setAfkTimeout

        public LegacyGuildCreateSpec setAfkTimeout​(@Nullable
                                                   Integer afkTimeout)
        Sets the AFK timeout, in seconds, for the created Guild.
        Parameters:
        afkTimeout - The AFK timeout, in seconds.
        Returns:
        This spec.
      • setSystemChannelId

        public LegacyGuildCreateSpec setSystemChannelId​(@Nullable
                                                        Snowflake id)
        Sets the id of the channel where guild notices such as welcome messages and boost events are posted for the created Guild.
        Parameters:
        id - The id of the channel where guild notices such as welcome messages and boost events are posted.
        Returns:
        This spec.
      • asRequest

        public discord4j.discordjson.json.GuildCreateRequest asRequest()
        Specified by:
        asRequest in interface LegacySpec<discord4j.discordjson.json.GuildCreateRequest>