Class AutocompleteRequest
- Namespace
- Textkernel.Tx.Models.API.DataEnrichment
- Assembly
- Textkernel.Tx.SDK.dll
Request body for a 'Autocomplete' request
public class AutocompleteRequest
- Inheritance
-
AutocompleteRequest
- Derived
- Inherited Members
Properties
Languages
The language(s) used to search for matching professions (the language of the provided Prefix). A maximum of 5 languages can be provided. Must be one of the supported ISO codes.
public List<string> Languages { get; set; }
Property Value
Limit
The maximum number of returned professions. The default is 10 and the maximum is 100.
public int Limit { get; set; }
Property Value
OutputLanguage
The language to ouput the found professions in (default is 'en'). Must be one of the supported ISO codes.
public string OutputLanguage { get; set; }
Property Value
Prefix
The job title prefix to be completed. Must contain at least 1 character.
public string Prefix { get; set; }