declare class StringSelectMenuOptionBuilder implements JSONEncodable<APISelectMenuOption>
A builder that creates API-compatible JSON data for string select menu options.
Constructors
data?: Partial<APISelectMenuOption>)
constructor(data?: Partial<APISelectMenuOption>
Creates a new string select menu option from API data.
Examples:Creating a string select menu option from an API data object:Creating a string select menu option using setters and API data:
const selectMenuOption = new SelectMenuOptionBuilder({
label: 'catchy label',
value: '1',
});
const selectMenuOption = new SelectMenuOptionBuilder({
default: true,
value: '1',
})
.setLabel('woah');
external setDefaultisDefault?: boolean) : this (
isDefault?: boolean
Sets whether this option is selected by default.
external setDescriptiondescription: string) : this (
description: string
Sets the description for this option.
external setEmojiemoji: APIMessageComponentEmoji) : this (
emoji: APIMessageComponentEmoji
Sets the emoji to display for this option.
external setLabellabel: string) : this (
label: string
Sets the label for this option.
external setValuevalue: string) : this (
value: string
Sets the value for this option.
external toJSONvalidationOverride?: boolean) : APISelectMenuOption (
validationOverride?: boolean
Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.