RoleSelectMenuBuilder

export declare class RoleSelectMenuBuilder extends BaseSelectMenuBuilder<APIRoleSelectComponent>
export declare class RoleSelectMenuBuilder extends BaseSelectMenuBuilder<APIRoleSelectComponent>
A builder that creates API-compatible JSON data for role select menus.
constructor(data?)
Creates a new select menu from API data.
Example
Creating a select menu from an API data object:
const selectMenu = new RoleSelectMenuBuilder({
custom_id: 'a cool select menu',
placeholder: 'select an option',
max_values: 2,
});
const selectMenu = new RoleSelectMenuBuilder({
custom_id: 'a cool select menu',
placeholder: 'select an option',
max_values: 2,
});
Example
Creating a select menu using setters and API data:
const selectMenu = new RoleSelectMenuBuilder({
custom_id: 'a cool select menu',
})
.setMinValues(1);
const selectMenu = new RoleSelectMenuBuilder({
custom_id: 'a cool select menu',
})
.setMinValues(1);
NameTypeOptionalDescription
dataPartial<APIRoleSelectComponent>YesThe API data to create this select menu with
ProtectedReadonly
addDefaultRoles(...roles):this
Adds default roles to this auto populated select menu.
NameTypeOptionalDescription
...rolesRestOrArray<Snowflake>NoThe roles to add
clearPlaceholder():this
Clears the placeholder for this select menu.
Inherited from BaseSelectMenuBuilder
setCustomId(customId):this
Sets the custom id for this select menu.
NameTypeOptionalDescription
customIdstringNoThe custom id to use
Inherited from BaseSelectMenuBuilder
setDefaultRoles(...roles):this
Sets default roles for this auto populated select menu.
NameTypeOptionalDescription
...rolesRestOrArray<Snowflake>NoThe roles to set
setDisabled(disabled?):this
Sets whether this select menu is disabled.
NameTypeOptionalDescription
disabledbooleanYesWhether this select menu is disabled
Inherited from BaseSelectMenuBuilder
setMaxValues(maxValues):this
Sets the maximum values that must be selected in the select menu.
NameTypeOptionalDescription
maxValuesnumberNoThe maximum values that must be selected
Inherited from BaseSelectMenuBuilder
setMinValues(minValues):this
Sets the minimum values that must be selected in the select menu.
NameTypeOptionalDescription
minValuesnumberNoThe minimum values that must be selected
Inherited from BaseSelectMenuBuilder
setPlaceholder(placeholder):this
Sets the placeholder for this select menu.
NameTypeOptionalDescription
placeholderstringNoThe placeholder to use
Inherited from BaseSelectMenuBuilder
toJSON(validationOverride?):APIRoleSelectComponent
Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.
NameTypeOptionalDescription
validationOverridebooleanYesForce validation to run/not run regardless of your global preference