Table of Contents

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

List<string>

Limit

The maximum number of returned professions. The default is 10 and the maximum is 100.

public int Limit { get; set; }

Property Value

int

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

string

Prefix

The job title prefix to be completed. Must contain at least 1 character.

public string Prefix { get; set; }

Property Value

string