# APISelectMenuOption

`interface` in `discord-component-embed` · v0.4.1

<https://docs.seedcord.org/packages/discord-component-embed/0.4.1/interfaces/apiselect-menu-option>

```ts
interface APISelectMenuOption
```

## Properties

### default

```ts
default: boolean
```

Whether this option should be already-selected by default

### description

```ts
description: string;
```

An additional description of the option (max 100 chars)

### emoji

```ts
emoji: APIMessageComponentEmoji;
```

The emoji to display to the left of the option

### label

```ts
label: string;
```

The user-facing name of the option (max 100 chars)

### value

```ts
value: string;
```

The dev-defined value of the option (max 100 chars)

## See also

- [https://discord.com/developers/docs/components/reference#string-select-select-option-structure](https://discord.com/developers/docs/components/reference#string-select-select-option-structure)
