Skip to main content

ODDropdownData interface

under construction

We are still working the API Reference! This page might be incomplete or doesn't contain all details!

Overview

This interface contains the data to build a dropdown.

View Source

Properties


channels array discord.Channel[]

The options when the type is "channel"

View Source


channelTypes array discord-api-types.ChannelType[]

Allowed channel types when the type is "channel"

View Source


customId string string

The custom id of this dropdown

View Source


disabled boolean boolean

Is this dropdown disabled?

View Source


maxValues type null|number

The maximum amount of items to be selected in this dropdown

View Source


mentionables array (discord.User|discord.Role)[]

The options when the type is "mentionable"

View Source


minValues type null|number

The minimum amount of items to be selected in this dropdown

View Source


options array discord.SelectMenuComponentOptionData[]

The options when the type is "string"

View Source


placeholder type null|string

The placeholder of this dropdown

View Source


roles array discord.Role[]

The options when the type is "role"

View Source


type type "string"|"role"|"channel"|"user"|"mentionable"

The type of this dropdown

View Source


users array discord.User[]

The options when the type is "user"

View Source