-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCompareSkillsToProfessionRequest.cs
31 lines (29 loc) · 1.31 KB
/
CompareSkillsToProfessionRequest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright © 2023 Textkernel BV. All rights reserved.
// This file is provided for use by, or on behalf of, Textkernel licensees
// within the terms of their license of Textkernel products or Textkernel customers
// within the Terms of Service pertaining to the Textkernel SaaS products.
using Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response;
using System;
using System.Collections.Generic;
using System.Text;
namespace Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request
{
/// <summary>
/// Request body for a 'CompareSkillsToProfession' request
/// </summary>
public class CompareSkillsToProfessionRequest
{
/// <summary>
/// The skills which should be compared against the given profession. The list can contain up to 50 skills.
/// </summary>
public List<SkillScore> Skills { get;set; }
/// <summary>
/// The profession code ID from the <see href="https://developer.textkernel.com/tx-platform/v10/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</see> to compare the skill set to.
/// </summary>
public int ProfessionCodeId { get; set; }
/// <summary>
/// The language to use for the returned descriptions.
/// </summary>
public string OutputLanguage { get; set; }
}
}