Type Alias FeatureBase
type FeatureBase = {
id: string;
language?: string;
text: string;
[text: `text_${string}`]: string;
[language: `language_${string}`]: string;
}
id: string;
language?: string;
text: string;
[text: `text_${string}`]: string;
[language: `language_${string}`]: string;
}
Indexable
- [text: `text_${string}`]: string
- [language: `language_${string}`]: string
A ISO 639-1 query's fallback language code. This field is only returned when multiple languages are requested using the
languageparameter, and will be present for each requested language.
Was this helpful?
A string analogous to the
textfield that matches the query in the requested language. This field is only returned when multiple languages are requested using thelanguageparameter, and will be present for each requested language.