gluon
    Preparing search index...

    Class CommandOption

    Helps to create a choice for a command.

    Implements

    • CommandOptionBuilder
    Index

    Constructors

    Properties

    autocomplete: boolean = false
    channel_types?: ChannelType[]
    choices: CommandChoiceBuilder[] = []
    defaultLocale: Locale
    description?: string
    description_localizations?: CommandOptionDescriptionLocalizations
    max_length?: number
    max_value?: number
    min_length?: number
    min_value?: number
    name?: string
    name_localizations?: CommandOptionNameLocalizations
    options: CommandOptionBuilder[] = []
    required?: boolean
    type?: ApplicationCommandOptionType

    Methods

    • Sets the name of the option.

      Parameters

      • name: string | CommandOptionNameLocalizations

        Sets the name of the option, or an object of names for localisation.

      Returns CommandOption

    • Returns the correct Discord format for a command option.

      Parameters

      • Optionalformat: JsonTypes
      • __namedParameters: { suppressValidation: boolean } = ...

      Returns {
          autocomplete: boolean;
          channel_types: undefined | ChannelType[];
          choices: (
              | CommandChoiceBuilderStorageJSON
              | CommandChoiceBuilderDiscordJSON
              | CommandChoiceBuilderCacheJSON
          )[];
          description: string;
          description_localizations: | undefined
          | CommandOptionDescriptionLocalizations;
          max_length: undefined
          | number;
          max_value: undefined | number;
          min_length: undefined | number;
          min_value: undefined | number;
          name: string;
          name_localizations: undefined | CommandOptionNameLocalizations;
          options: (
              | CommandOptionStorageJSON
              | CommandOptionCacheJSON
              | CommandOptionDiscordJSON
          )[];
          required: undefined
          | boolean;
          type: ApplicationCommandOptionType;
      }