export declare class StringSelectMenuBuilder extends BaseSelectMenuBuilder<APIStringSelectComponent>
A builder that creates API-compatible JSON data for string select menus.
Constructors
data?: Partial<APIStringSelectComponent>)
constructor(Creates a new select menu from API data.
protectedreadonlyStringSelectMenuData data :
readonlyreadonly StringSelectMenuOptionBuilder[] options :
The options for this select menu.
addOptions...options: RestOrArray<APISelectMenuOption | StringSelectMenuOptionBuilder | ((builder: StringSelectMenuOptionBuilder) => StringSelectMenuOptionBuilder)>) : this (
Adds options to this select menu.
Clears the placeholder for this select menu.
Inherited from: BaseSelectMenuBuilder
setCustomIdcustomId: string) : this (
Sets the custom id for this select menu.
Inherited from: BaseSelectMenuBuilder
setDisableddisabled?: boolean) : this (
Sets whether this select menu is disabled.
Inherited from: BaseSelectMenuBuilder
setMaxValuesmaxValues: number) : this (
Sets the maximum values that must be selected in the select menu.
Inherited from: BaseSelectMenuBuilder
setMinValuesminValues: number) : this (
Sets the minimum values that must be selected in the select menu.
Inherited from: BaseSelectMenuBuilder
setOptions...options: RestOrArray<APISelectMenuOption | StringSelectMenuOptionBuilder | ((builder: StringSelectMenuOptionBuilder) => StringSelectMenuOptionBuilder)>) : this (
Sets the options for this select menu.
setPlaceholderplaceholder: string) : this (
Sets the placeholder for this select menu.
Inherited from: BaseSelectMenuBuilder
spliceOptionsindex: numberdeleteCount: number...options: (APISelectMenuOption | StringSelectMenuOptionBuilder | ((builder: StringSelectMenuOptionBuilder) => StringSelectMenuOptionBuilder))[]) : this (
Removes, replaces, or inserts options for this select menu.
selectMenu.spliceOptions(0, 1);
const n = 4;
selectMenu.spliceOptions(0, n);
selectMenu.spliceOptions(-1, 1);
toJSONvalidationOverride?: boolean) : APIStringSelectComponent (
Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.