class StringSelectMenuOptionBuilder
implements
JSONEncodable<APISelectMenuOption>export 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');
Partial<APISelectMenuOption> data :
setDefaultisDefault?: boolean) : this (
isDefault?: boolean
Sets whether this option is selected by default.
setDescriptiondescription: string) : this (
description: string
Sets the description for this option.
setEmojiemoji: APIMessageComponentEmoji) : this (
emoji: APIMessageComponentEmoji
Sets the emoji to display for this option.
setLabellabel: string) : this (
label: string
Sets the label for this option.
setValuevalue: string) : this (
value: string
Sets the value for this option.
toJSONAPISelectMenuOption () :
Serializes this builder to API-compatible JSON data.