Class BasicParseOptions
- Namespace
- Textkernel.Tx.Models.API.Parsing
- Assembly
- Textkernel.Tx.SDK.dll
Options for parsing
public class BasicParseOptions
- Inheritance
-
BasicParseOptions
- Derived
- Inherited Members
Properties
Configuration
The configuration settings to use during parsing. See https://developer.textkernel.com/tx-platform/v10/resume-parser/overview/configuration/#config.
NOTE: leaving this null/empty will use the default parsing settings which is recommended in most cases.
public string Configuration { get; set; }
Property Value
NormalizerData
If you want to use custom normalizations during parsing, set those here. This not a recommended feature for most customers. For more information, reach out to service@textkernel.com
[Obsolete("You should use Professions Normalization and Skills Normalization instead.")]
public string NormalizerData { get; set; }
Property Value
ProfessionsSettings
Enable normalization of job titles using our proprietary taxonomy and international standards.
public ProfessionsSettings ProfessionsSettings { get; set; }
Property Value
SkillsData
If you want to use custom skills lists during parsing, set those here. This not a recommended feature for most customers. For more information, reach out to service@textkernel.com
[Obsolete("You should use the V2 skills taxonomy instead.")]
public List<string> SkillsData { get; set; }
Property Value
SkillsSettings
Enable skills normalization and enhanced candidate summarization, and specify the version of the skills taxonomy for this parsing transaction.
public SkillsSettings SkillsSettings { get; set; }