export declare class UserSelectMenuBuilder extends BaseSelectMenuBuilder<APIUserSelectComponent>
A builder that creates API-compatible JSON data for user select menus.
Constructors
data?: Partial<APIUserSelectComponent>)
constructor(data?: Partial<APIUserSelectComponent>
Creates a new select menu from API data.
Examples:Creating a select menu from an API data object:Creating a select menu using setters and API data:
const selectMenu = new UserSelectMenuBuilder({
custom_id: 'a cool select menu',
placeholder: 'select an option',
max_values: 2,
});
const selectMenu = new UserSelectMenuBuilder({
custom_id: 'a cool select menu',
})
.setMinValues(1);
readonlyPartial<DataType> data :
The API data associated with this component.
Inherited from: ComponentBuilder
setCustomIdcustomId: string) : this (
customId: string
Sets the custom id for this select menu.
Inherited from: BaseSelectMenuBuilder
setDisableddisabled?: boolean) : this (
disabled?: boolean
Sets whether this select menu is disabled.
Inherited from: BaseSelectMenuBuilder
setMaxValuesmaxValues: number) : this (
maxValues: number
Sets the maximum values that must be selected in the select menu.
Inherited from: BaseSelectMenuBuilder
setMinValuesminValues: number) : this (
minValues: number
Sets the minimum values that must be selected in the select menu.
Inherited from: BaseSelectMenuBuilder
setPlaceholderplaceholder: string) : this (
placeholder: string
Sets the placeholder for this select menu.
Inherited from: BaseSelectMenuBuilder
Serializes this builder to API-compatible JSON data.
Inherited from: BaseSelectMenuBuilder