class ChannelSelectMenuBuilder

export declare class ChannelSelectMenuBuilder extends BaseSelectMenuBuilder<APIChannelSelectComponent>

A builder that creates API-compatible JSON data for channel select menus.

Constructors

constructor()

Creates a new select menu from API data.

protectedreadonly
data : Partial<APIChannelSelectComponent>

addChannelTypes() : this

Adds channel types to this select menu.

addDefaultChannels(
...channels: RestOrArray<Snowflake>
) : this

Adds default channels to this auto populated select menu.

clearPlaceholder() : this

Clears the placeholder for this select menu.

Inherited from: BaseSelectMenuBuilder

setChannelTypes() : this

Sets channel types for this select menu.

setCustomId(
customId: string
) : this

Sets the custom id for this select menu.

Inherited from: BaseSelectMenuBuilder

setDefaultChannels(
...channels: RestOrArray<Snowflake>
) : this

Sets default channels for this auto populated select menu.

setDisabled(
disabled?: boolean
) : this

Sets whether this select menu is disabled.

Inherited from: BaseSelectMenuBuilder

setMaxValues(
maxValues: number
) : this

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

Inherited from: BaseSelectMenuBuilder

setMinValues(
minValues: number
) : this

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

Inherited from: BaseSelectMenuBuilder

setPlaceholder(
placeholder: string
) : this

Sets the placeholder for this select menu.

Inherited from: BaseSelectMenuBuilder

toJSON(
validationOverride?: boolean
) : APIChannelSelectComponent

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