class BaseSelectMenuBuilder

abstract
export declare abstract class BaseSelectMenuBuilder<Data extends APISelectMenuComponent> extends ComponentBuilder<Data> implements JSONEncodable<APISelectMenuComponent>

The base select menu builder that contains common symbols for select menu builders.

Type Parameters

protectedabstractreadonly
data : Partial<Pick<Data, 'custom_id' | 'disabled' | 'max_values' | 'min_values' | 'placeholder'>>

clearPlaceholder() : this

Clears the placeholder for this select menu.

setCustomId(
customId: string
) : this

Sets the custom id for this select menu.

setDisabled(
disabled?: boolean
) : this

Sets whether this select menu is disabled.

setMaxValues(
maxValues: number
) : this

Sets the maximum values that must be selected in the select menu.

setMinValues(
minValues: number
) : this

Sets the minimum values that must be selected in the select menu.

setPlaceholder(
placeholder: string
) : this

Sets the placeholder for this select menu.

abstract
toJSON(
validationOverride?: boolean
) : Data

Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.

Inherited from: ComponentBuilder