Interface RawApplicationCommandOptionChoice

interface RawApplicationCommandOptionChoice {
    name: string;
    name_localizations?: null | Partial<Record<Locale, string>>;
    value: string | number;
}

Properties

name: string
name_localizations?: null | Partial<Record<Locale, string>>
value: string | number