-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNormalizeSkillsRequest.cs
30 lines (28 loc) · 1.4 KB
/
NormalizeSkillsRequest.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
// 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 System;
using System.Collections.Generic;
using System.Text;
namespace Textkernel.Tx.Models.API.DataEnrichment.Skills.Request
{
/// <summary>
/// Request body for a 'NormalizeSkills' request
/// </summary>
public class NormalizeSkillsRequest
{
/// <summary>
/// The list of skills to normalize (up to 50 skills, each skill may not exceed 100 characters).
/// </summary>
public List<string> Skills { get; set; }
/// <summary>
/// The language of the given skills. Must be one of the supported <see href="https://developer.textkernel.com/tx-platform/v10/data-enrichment/overview/#professions-languages">ISO codes</see>.
/// </summary>
public string Language { get; set; }
/// <summary>
/// The language to use for the output skill descriptions. If not provided, defaults to the input language. Must be one of the supported <see href="https://developer.textkernel.com/tx-platform/v10/data-enrichment/overview/#professions-languages">ISO codes</see>.
/// </summary>
public string OutputLanguage { get; set; }
}
}