File tree Expand file tree Collapse file tree
src/main/java/com/textkernel/tx/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public class BaseParseResponseValue {
3838 public ApiResponseInfoLite ParsingResponse ;
3939
4040 /**
41- * If profesison normalization was requested in the {@link ParseOptions#ProfessionsSettings},
41+ * If profession normalization was requested in the {@link ParseOptions#ProfessionsSettings},
4242 * the status of the profession normalization transaction will be output here
4343 */
4444 public ApiResponseInfoLite ProfessionNormalizationResponse ;
Original file line number Diff line number Diff line change 66package com .textkernel .tx .models .api .parsing ;
77
88import com .textkernel .tx .models .api .ApiResponse ;
9+ import com .textkernel .tx .models .api .ApiResponseInfoLite ;
910import com .textkernel .tx .models .resume .ParsedResume ;
1011
1112/**
@@ -27,4 +28,7 @@ public class ParseResumeResponseValue extends BaseParseResponseValue {
2728 * Information about the FlexRequests transaction, if any were provided.
2829 */
2930 public FlexResponse FlexResponse ;
31+
32+ /** Information about the status of education normalization during the parse */
33+ public ApiResponseInfoLite EducationNormalizationResponse ;
3034}
Original file line number Diff line number Diff line change 55
66package com .textkernel .tx .models .resume .education ;
77
8+ import com .textkernel .tx .models .api .parsing .ParseResumeResponseValue ;
89import com .textkernel .tx .models .resume .NormalizedString ;
910
1011/**
@@ -52,9 +53,21 @@ public class Degree {
5253 @ Deprecated
5354 public String Type ;
5455
55- /** The normalized code/description of the degree based on the CV locale. */
56+ /** The normalized code/description of the degree based on the CV locale.
57+ * <br><b>
58+ * NOTE: if you require this value, be sure to check the
59+ * {@link ParseResumeResponseValue#EducationNormalizationResponse}
60+ * on each response as some languages/locales are not supported
61+ * </b>
62+ */
5663 public NormalizedDegree NormalizedLocal ;
5764
58- /** The normalized code/description of the degree based on an international standard. */
65+ /** The normalized code/description of the degree based on an international standard.
66+ * <br><b>
67+ * NOTE: if you require this value, be sure to check the
68+ * {@link ParseResumeResponseValue#EducationNormalizationResponse}
69+ * on each response as some languages/locales are not supported
70+ * </b>
71+ */
5972 public NormalizedDegree NormalizedInternational ;
6073}
You can’t perform that action at this time.
0 commit comments