Class SuggestSkillsFromSkillsRequest
Request body for a 'Suggest Skills from Skills' request
Inheritance
System.Object
SuggestSkillsFromSkillsRequest
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request
Assembly: Textkernel.Tx.SDK.dll
Syntax
public class SuggestSkillsFromSkillsRequest
Properties
| Improve this Doc View SourceLimit
The maximum amount of suggested skills returned. If not specified this parameter defaults to 25.
Declaration
public int Limit { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
OutputLanguage
The language to use for the returned descriptions.
Declaration
public string OutputLanguage { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Skills
The skills for which the service should return related skills. The list can contain up to 50 skills.
Declaration
public List<SkillScore> Skills { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<SkillScore> |
Types
If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certification, All. Only applicable in v2 endpoints.
Declaration
public List<string> Types { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |