-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathEnrichedScoreData.cs
53 lines (45 loc) · 1.88 KB
/
EnrichedScoreData.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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.
namespace Textkernel.Tx.Models.API.Matching.Response
{
/// <summary>
/// Contains metadata/evidence about scores for a specific match/score result
/// </summary>
public class EnrichedScoreData
{
/// <summary>
/// Detailed match information for the Languages category.
/// </summary>
public SimpleCategoryScoreData Languages { get; set; }
/// <summary>
/// Detailed match information for the Certifications category.
/// </summary>
public SimpleCategoryScoreData Certifications { get; set; }
/// <summary>
/// Detailed match information for the ExecutiveType category.
/// </summary>
public SimpleCategoryScoreData ExecutiveType { get; set; }
/// <summary>
/// Detailed match information for the Education category.
/// </summary>
public EducationScoreData Education { get; set; }
/// <summary>
/// Detailed match information for the Taxonomies category.
/// </summary>
public TaxonomiesScoreData Taxonomies { get; set; }
/// <summary>
/// Detailed match information for the JobTitles category.
/// </summary>
public JobTitlesScoreData JobTitles { get; set; }
/// <summary>
/// Detailed match information for the Skills category.
/// </summary>
public SkillsScoreData Skills { get; set; }
/// <summary>
/// Detailed match information for the ManagementLevel category.
/// </summary>
public ManagementLevelScoreData ManagementLevel { get; set; }
}
}