@@ -32,6 +32,42 @@ namespace Regula.DocumentReader.WebClient.Model
32
32
[ DataContract ( Name = "MRZTestQuality" ) ]
33
33
public partial class MRZTestQuality : IValidatableObject
34
34
{
35
+
36
+ /// <summary>
37
+ /// Gets or Sets CHECK_SUMS
38
+ /// </summary>
39
+ [ DataMember ( Name = "CHECK_SUMS" , IsRequired = true , EmitDefaultValue = true ) ]
40
+ public CheckResult CHECK_SUMS { get ; set ; }
41
+
42
+ /// <summary>
43
+ /// Gets or Sets CONTRAST_PRINT
44
+ /// </summary>
45
+ [ DataMember ( Name = "CONTRAST_PRINT" , IsRequired = true , EmitDefaultValue = true ) ]
46
+ public CheckResult CONTRAST_PRINT { get ; set ; }
47
+
48
+ /// <summary>
49
+ /// Gets or Sets PRINT_POSITION
50
+ /// </summary>
51
+ [ DataMember ( Name = "PRINT_POSITION" , IsRequired = true , EmitDefaultValue = true ) ]
52
+ public CheckResult PRINT_POSITION { get ; set ; }
53
+
54
+ /// <summary>
55
+ /// Gets or Sets STAIN_MRZ
56
+ /// </summary>
57
+ [ DataMember ( Name = "STAIN_MRZ" , IsRequired = true , EmitDefaultValue = true ) ]
58
+ public CheckResult STAIN_MRZ { get ; set ; }
59
+
60
+ /// <summary>
61
+ /// Gets or Sets SYMBOLS_PARAM
62
+ /// </summary>
63
+ [ DataMember ( Name = "SYMBOLS_PARAM" , IsRequired = true , EmitDefaultValue = true ) ]
64
+ public CheckResult SYMBOLS_PARAM { get ; set ; }
65
+
66
+ /// <summary>
67
+ /// Gets or Sets TEXTUAL_FILLING
68
+ /// </summary>
69
+ [ DataMember ( Name = "TEXTUAL_FILLING" , IsRequired = true , EmitDefaultValue = true ) ]
70
+ public CheckResult TEXTUAL_FILLING { get ; set ; }
35
71
/// <summary>
36
72
/// Initializes a new instance of the <see cref="MRZTestQuality" /> class.
37
73
/// </summary>
@@ -50,7 +86,7 @@ protected MRZTestQuality() { }
50
86
/// <param name="strCount">strCount (required).</param>
51
87
/// <param name="strings">strings (required).</param>
52
88
/// <param name="tEXTUALFILLING">tEXTUALFILLING (required).</param>
53
- public MRZTestQuality ( int cHECKSUMS = default ( int ) , int cONTRASTPRINT = default ( int ) , int dOCFORMAT = default ( int ) , int mRZFORMAT = default ( int ) , int pRINTPOSITION = default ( int ) , int sTAINMRZ = default ( int ) , int sYMBOLSPARAM = default ( int ) , int strCount = default ( int ) , List < StringItem > strings = default ( List < StringItem > ) , int tEXTUALFILLING = default ( int ) )
89
+ public MRZTestQuality ( CheckResult cHECKSUMS = default ( CheckResult ) , CheckResult cONTRASTPRINT = default ( CheckResult ) , int dOCFORMAT = default ( int ) , int mRZFORMAT = default ( int ) , CheckResult pRINTPOSITION = default ( CheckResult ) , CheckResult sTAINMRZ = default ( CheckResult ) , CheckResult sYMBOLSPARAM = default ( CheckResult ) , int strCount = default ( int ) , List < StringItem > strings = default ( List < StringItem > ) , CheckResult tEXTUALFILLING = default ( CheckResult ) )
54
90
{
55
91
this . CHECK_SUMS = cHECKSUMS ;
56
92
this . CONTRAST_PRINT = cONTRASTPRINT ;
@@ -69,18 +105,6 @@ protected MRZTestQuality() { }
69
105
this . TEXTUAL_FILLING = tEXTUALFILLING ;
70
106
}
71
107
72
- /// <summary>
73
- /// Gets or Sets CHECK_SUMS
74
- /// </summary>
75
- [ DataMember ( Name = "CHECK_SUMS" , IsRequired = true , EmitDefaultValue = true ) ]
76
- public int CHECK_SUMS { get ; set ; }
77
-
78
- /// <summary>
79
- /// Gets or Sets CONTRAST_PRINT
80
- /// </summary>
81
- [ DataMember ( Name = "CONTRAST_PRINT" , IsRequired = true , EmitDefaultValue = true ) ]
82
- public int CONTRAST_PRINT { get ; set ; }
83
-
84
108
/// <summary>
85
109
/// Gets or Sets DOC_FORMAT
86
110
/// </summary>
@@ -93,24 +117,6 @@ protected MRZTestQuality() { }
93
117
[ DataMember ( Name = "MRZ_FORMAT" , IsRequired = true , EmitDefaultValue = true ) ]
94
118
public int MRZ_FORMAT { get ; set ; }
95
119
96
- /// <summary>
97
- /// Gets or Sets PRINT_POSITION
98
- /// </summary>
99
- [ DataMember ( Name = "PRINT_POSITION" , IsRequired = true , EmitDefaultValue = true ) ]
100
- public int PRINT_POSITION { get ; set ; }
101
-
102
- /// <summary>
103
- /// Gets or Sets STAIN_MRZ
104
- /// </summary>
105
- [ DataMember ( Name = "STAIN_MRZ" , IsRequired = true , EmitDefaultValue = true ) ]
106
- public int STAIN_MRZ { get ; set ; }
107
-
108
- /// <summary>
109
- /// Gets or Sets SYMBOLS_PARAM
110
- /// </summary>
111
- [ DataMember ( Name = "SYMBOLS_PARAM" , IsRequired = true , EmitDefaultValue = true ) ]
112
- public int SYMBOLS_PARAM { get ; set ; }
113
-
114
120
/// <summary>
115
121
/// Gets or Sets StrCount
116
122
/// </summary>
@@ -123,12 +129,6 @@ protected MRZTestQuality() { }
123
129
[ DataMember ( Name = "Strings" , IsRequired = true , EmitDefaultValue = true ) ]
124
130
public List < StringItem > Strings { get ; set ; }
125
131
126
- /// <summary>
127
- /// Gets or Sets TEXTUAL_FILLING
128
- /// </summary>
129
- [ DataMember ( Name = "TEXTUAL_FILLING" , IsRequired = true , EmitDefaultValue = true ) ]
130
- public int TEXTUAL_FILLING { get ; set ; }
131
-
132
132
/// <summary>
133
133
/// Returns the string presentation of the object
134
134
/// </summary>
0 commit comments