Class SuggestProfessionsRequest
- Namespace
- Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request
- Assembly
- Textkernel.Tx.SDK.dll
Request body for a 'SuggestProfessions' request
public class SuggestProfessionsRequest
- Inheritance
-
SuggestProfessionsRequest
- Inherited Members
Properties
Limit
The maximum amount of professions returned. If not specified this parameter defaults to 10.
public int Limit { get; set; }
Property Value
OutputLanguage
The language to use for the returned descriptions.
public string OutputLanguage { get; set; }
Property Value
ReturnMissingSkills
Flag to enable returning a list of missing skills per suggested profession.
public bool ReturnMissingSkills { get; set; }
Property Value
Skills
The skill IDs (and optionally, scores) used to return the most relevant professions. The list can contain up to 50 skill IDs.
public List<SkillScore> Skills { get; set; }