interface AutocompleteChoice {
    name: string;
    nameLocalizations?: Partial<Record<Locale, string>>;
    value: string;
}

Properties

name: string

The name of the choice.

nameLocalizations?: Partial<Record<Locale, string>>

A dictionary of locales to localized names.

value: string

The value of the choice.