Class BimetricScoreRequest
- Namespace
- Textkernel.Tx.Models.API.BimetricScoring
- Assembly
- Textkernel.Tx.SDK.dll
Request body for a 'BimetricScore' request
public class BimetricScoreRequest
- Inheritance
-
BimetricScoreRequest
- Derived
- Inherited Members
Properties
PreferredCategoryWeights
The weights you want to use for scoring. It is important to specify these, otherwise default
values will be used.
These weights will be used except in the case
that you provided a non-zero weight for a category that is irrelevant in the source document.
For example, this can happen when the source document contains no languages.
See also: AppliedCategoryWeights
public CategoryWeights PreferredCategoryWeights { get; set; }
Property Value
Settings
The settings to use during scoring calculations
public SearchMatchSettings Settings { get; set; }
Property Value
TargetJobs
A list of parsed jobs containing the document name/identifier and the parsed job data. NOTE: you can only use either this property to score jobs, or TargetResumes to score resumes, but not both
public List<ParsedJobWithId> TargetJobs { get; set; }
Property Value
TargetResumes
A list of parsed resumes containing the document name/identifier and the parsed resume data. NOTE: you can only use either this property to score resumes, or TargetJobs to score jobs, but not both
public List<ParsedResumeWithId> TargetResumes { get; set; }