declare class UserSelectMenuBuilder extends BaseSelectMenuBuilder<APIUserSelectComponent>
A builder that creates API-compatible JSON data for user select menus.
Constructors
data?: Partial<APIUserSelectComponent>)
constructor(Creates a new select menu from 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);
protectedreadonlyexternalPartial<APIUserSelectComponent> data :
external addDefaultUsers...users: RestOrArray<Snowflake>) : this (
Adds default users to this auto populated select menu.
Clears the id of this component, defaulting to a default incremented id.
Inherited from: ComponentBuilder
Clears the placeholder for this select menu.
Inherited from: BaseSelectMenuBuilder
external setCustomIdcustomId: string) : this (
Sets the custom id for this select menu.
Inherited from: BaseSelectMenuBuilder
external setDefaultUsers...users: RestOrArray<Snowflake>) : this (
Sets default users for this auto populated select menu.
external setDisableddisabled?: boolean) : this (
Sets whether this select menu is disabled.
Inherited from: BaseSelectMenuBuilder
external setMaxValuesmaxValues: number) : this (
Sets the maximum values that must be selected in the select menu.
Inherited from: BaseSelectMenuBuilder
external setMinValuesminValues: number) : this (
Sets the minimum values that must be selected in the select menu.
Inherited from: BaseSelectMenuBuilder
external setPlaceholderplaceholder: string) : this (
Sets the placeholder for this select menu.
Inherited from: BaseSelectMenuBuilder
external toJSONvalidationOverride?: boolean) : APIUserSelectComponent (
Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.