UserSelectMenuBuilder

export class UserSelectMenuBuilder extends BuilderUserSelectMenuComponent
export class UserSelectMenuBuilder extends BuilderUserSelectMenuComponent
Class used to build select menu components to be sent through the API
constructor(data?)
Constructs a new instance of the UserSelectMenuBuilder class
NameTypeOptionalDescription
dataPartial<UserSelectMenuComponentData | APIUserSelectComponent>YesNone
Readonly
data:Partial<DataType>
The API data associated with this component.
Inherited from ComponentBuilder
Static
Creates a new select menu builder from JSON data
NameTypeOptionalDescription
otherJSONEncodable<APISelectMenuComponent> | APISelectMenuComponentNoThe other data
setCustomId(customId):this
Sets the custom id for this select menu.
NameTypeOptionalDescription
customIdstringNoThe custom id to use
Inherited from BaseSelectMenuBuilder
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():SelectMenuType
Serializes this builder to API-compatible JSON data.
Remarks
This method runs validations on the data before serializing it. As such, it may throw an error if the data is invalid.
Inherited from BaseSelectMenuBuilder