Interface CommandInteractionPayload

    • Method Detail

      • getCommandType

        @Nonnull
        Command.Type getCommandType()
        The Type of command this interaction is for.
        Returns:
        The command type
      • getName

        @Nonnull
        String getName()
        The command name.
        This can be useful for abstractions.

        Note that commands can have these following structures:

        • /name subcommandGroup subcommandName
        • /name subcommandName
        • /name
        You can use getCommandPath() to simplify your checks.
        Returns:
        The command name
      • getSubcommandName

        @Nullable
        String getSubcommandName()
        The subcommand name.
        This can be useful for abstractions.

        Note that commands can have these following structures:

        • /name subcommandGroup subcommandName
        • /name subcommandName
        • /name
        You can use getCommandPath() to simplify your checks.
        Returns:
        The subcommand name, or null if this is not a subcommand
      • getSubcommandGroup

        @Nullable
        String getSubcommandGroup()
        The subcommand group name.
        This can be useful for abstractions.

        Note that commands can have these following structures:

        • /name subcommandGroup subcommandName
        • /name subcommandName
        • /name
        You can use getCommandPath() to simplify your checks.
        Returns:
        The subcommand group name, or null if this is not a subcommand group
      • getCommandString

        @Nonnull
        default String getCommandString()
        Gets the display string for this command.
        This is similar to the string you see when clicking the interaction name in the client. For non-slash command types, this simply returns getName() instead.

        Example return for an echo command: /say echo phrase: Say this

        Returns:
        The display string for this command
      • getCommandIdLong

        long getCommandIdLong()
        The command id.
        This is the id generated when a command is created via Guild.updateCommands() or similar.

        It is usually preferred to discriminate commands by the command names instead.

        Returns:
        The command id
      • getCommandId

        @Nonnull
        default String getCommandId()
        The command id
        This is the id generated when a command is created via Guild.updateCommands() or similar.

        It is usually preferred to discriminate commands by the command names instead.

        Returns:
        The command id
      • getOptions

        @Nonnull
        List<OptionMapping> getOptions()
        The options provided by the user when this command was executed.
        Each option has a name and value.

        For CommandAutoCompleteInteraction, this might be incomplete and unvalidated. Auto-complete interactions happen on incomplete command inputs and are not validated.

        Returns:
        The options passed for this command
      • getOption

        @Nullable
        default OptionMapping getOption​(@Nonnull
                                        String name)
        Finds the first option with the specified name.

        For CommandAutoCompleteInteraction, this might be incomplete and unvalidated. Auto-complete interactions happen on incomplete command inputs and are not validated.

        Parameters:
        name - The option name
        Returns:
        The option with the provided name, or null if that option is not provided
        Throws:
        IllegalArgumentException - If the name is null