Class GradePointAverage
- Namespace
- Textkernel.Tx.Models.Resume.Education
- Assembly
- Textkernel.Tx.SDK.dll
Information about a GPA (or equivalent)
public class GradePointAverage
- Inheritance
-
GradePointAverage
- Inherited Members
Properties
MaxScore
The max score in the ScoringSystem
public string MaxScore { get; set; }
Property Value
MinimumScore
The minimum score in the ScoringSystem
public string MinimumScore { get; set; }
Property Value
NormalizedScore
The Score, normalized to a 0.0-1.0 scale, with 1.0 being the top mark.
This takes into account different min/max values and whether high or low numbers
are ranked higher.This makes it possible/valid to compare GPAs across various scales.
For example:
- USA degree with GPA of 3.5 / 4.0 = 0.875
- German degree with 1.5 / 6.0 = 0.916
public decimal NormalizedScore { get; set; }
Property Value
Score
The score found in the resume
public string Score { get; set; }
Property Value
ScoringSystem
The scoring system used on the resume
public string ScoringSystem { get; set; }