Class EducationDetails
- Namespace
- Textkernel.Tx.Models.Resume.Education
- Assembly
- Textkernel.Tx.SDK.dll
An education entry on a resume
public class EducationDetails
- Inheritance
-
EducationDetails
- Inherited Members
Properties
Degree
The degree obtained (or worked toward)
public Degree Degree { get; set; }
Property Value
EndDate
The date graduated or education ended
public TxDate EndDate { get; set; }
Property Value
GPA
The GPA/marks listed on the resume
public GradePointAverage GPA { get; set; }
Property Value
Graduated
Whether or not the candidate graduated
public TxPrimitive<bool> Graduated { get; set; }
Property Value
Id
The id of this education entry (one-based, so EDU-1 is the first, etc)
public string Id { get; set; }
Property Value
LastEducationDate
The date graduated or education ended
[Obsolete("You should use the EndDate instead.")]
public TxDate LastEducationDate { get; set; }
Property Value
Location
The Country/Region/City of the school, if found
public Location Location { get; set; }
Property Value
Majors
Any majors/areas of major focus
public List<string> Majors { get; set; }
Property Value
Minors
Any minors/areas of minor focus
public List<string> Minors { get; set; }
Property Value
SchoolName
The name of the school attended
public NormalizedString SchoolName { get; set; }
Property Value
SchoolType
The type of the school attended. One of:
UNSPECIFIED
lowerSchool
highschool
secondary
trade
professional
vocational
community
college
university
public string SchoolType { get; set; }
Property Value
StartDate
The date education started
public TxDate StartDate { get; set; }
Property Value
Text
The raw text from the resume
public string Text { get; set; }