Skip to content

Commit 0c43326

Browse files
Merge pull request #198 from regulaforensics/stable
Stable -> Develop
2 parents 5e9d3d5 + 3283144 commit 0c43326

14 files changed

+104
-347
lines changed

.openapi-generator/FILES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ src/Regula.DocumentReader.WebClient/Model/MRZTestQualityItem.cs
134134
src/Regula.DocumentReader.WebClient/Model/MRZTestQualityResult.cs
135135
src/Regula.DocumentReader.WebClient/Model/MeasureSystem.cs
136136
src/Regula.DocumentReader.WebClient/Model/MrzDetectModeEnum.cs
137-
src/Regula.DocumentReader.WebClient/Model/MrzPosition.cs
138137
src/Regula.DocumentReader.WebClient/Model/MrzPositionItem.cs
139138
src/Regula.DocumentReader.WebClient/Model/OCRSecurityTextItem.cs
140139
src/Regula.DocumentReader.WebClient/Model/OCRSecurityTextResult.cs

src/Regula.DocumentReader.WebClient/Model/DocVisualExtendedField.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected DocVisualExtendedField() { }
5353
/// <param name="wLCID">wLCID.</param>
5454
/// <param name="reserved2">reserved2.</param>
5555
/// <param name="reserved3">reserved3.</param>
56-
public DocVisualExtendedField(RectangleCoordinates fieldRect = default(RectangleCoordinates), TextFieldType wFieldType = default(TextFieldType), string fieldName = default(string), decimal stringsCount = default(decimal), List<StringRecognitionResult> stringsResult = default(List<StringRecognitionResult>), decimal bufLength = default(decimal), string bufText = default(string), string fieldMask = default(string), int validity = default(int), int inComparison = default(int), int wLCID = default(int), int reserved2 = default(int), int reserved3 = default(int)) : base(wFieldType, fieldName, stringsCount, stringsResult, bufLength, bufText, fieldMask, validity, inComparison, wLCID, reserved2, reserved3)
56+
public DocVisualExtendedField(RectangleCoordinates fieldRect = default(RectangleCoordinates), TextFieldType wFieldType = default(TextFieldType), string fieldName = default(string), decimal stringsCount = default(decimal), List<StringRecognitionResult> stringsResult = default(List<StringRecognitionResult>), decimal bufLength = default(decimal), string bufText = default(string), string fieldMask = default(string), int validity = default(int), int inComparison = default(int), LCID? wLCID = default(LCID?), int reserved2 = default(int), int reserved3 = default(int)) : base(wFieldType, fieldName, stringsCount, stringsResult, bufLength, bufText, fieldMask, validity, inComparison, wLCID, reserved2, reserved3)
5757
{
5858
// to ensure "fieldRect" is required (not null)
5959
if (fieldRect == null)

src/Regula.DocumentReader.WebClient/Model/EncryptedRCLItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ protected EncryptedRCLItem() { }
5656
/// </summary>
5757
/// <value>Base64 encoded data</value>
5858
/*
59-
<example>[B@5022ed18</example>
59+
<example>[B@671e627</example>
6060
*/
6161
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
6262
public byte[] EncryptedRCL { get; set; }

src/Regula.DocumentReader.WebClient/Model/EncryptedRCLResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected EncryptedRCLResult() { }
6262
/// </summary>
6363
/// <value>Base64 encoded data</value>
6464
/*
65-
<example>[B@5022ed18</example>
65+
<example>[B@671e627</example>
6666
*/
6767
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
6868
public byte[] EncryptedRCL { get; set; }

src/Regula.DocumentReader.WebClient/Model/LicenseItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ protected LicenseItem() { }
5656
/// </summary>
5757
/// <value>Base64 encoded data</value>
5858
/*
59-
<example>[B@77df6449</example>
59+
<example>[B@3768c9b</example>
6060
*/
6161
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
6262
public byte[] License { get; set; }

src/Regula.DocumentReader.WebClient/Model/LicenseResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected LicenseResult() { }
6262
/// </summary>
6363
/// <value>Base64 encoded data</value>
6464
/*
65-
<example>[B@77df6449</example>
65+
<example>[B@3768c9b</example>
6666
*/
6767
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
6868
public byte[] License { get; set; }

src/Regula.DocumentReader.WebClient/Model/MRZPositionResult.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ protected MRZPositionResult() { }
4747
/// <param name="listIdx">listIdx.</param>
4848
/// <param name="pageIdx">pageIdx.</param>
4949
/// <param name="resultType">resultType (required) (default to Result.MRZ_POSITION).</param>
50-
public MRZPositionResult(MrzPosition mrzPosition = default(MrzPosition), int bufLength = default(int), int light = default(int), int listIdx = default(int), int pageIdx = default(int), Result resultType = Result.MRZ_POSITION) : base(bufLength, light, listIdx, pageIdx, resultType)
50+
public MRZPositionResult(DocumentPosition mrzPosition = default(DocumentPosition), int bufLength = default(int), int light = default(int), int listIdx = default(int), int pageIdx = default(int), Result resultType = Result.MRZ_POSITION) : base(bufLength, light, listIdx, pageIdx, resultType)
5151
{
5252
// to ensure "mrzPosition" is required (not null)
5353
if (mrzPosition == null)
@@ -61,7 +61,7 @@ protected MRZPositionResult() { }
6161
/// Gets or Sets MrzPosition
6262
/// </summary>
6363
[DataMember(Name = "MrzPosition", IsRequired = true, EmitDefaultValue = true)]
64-
public MrzPosition MrzPosition { get; set; }
64+
public DocumentPosition MrzPosition { get; set; }
6565

6666
/// <summary>
6767
/// Returns the string presentation of the object

src/Regula.DocumentReader.WebClient/Model/MRZTestQuality.cs

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,42 @@ namespace Regula.DocumentReader.WebClient.Model
3232
[DataContract(Name = "MRZTestQuality")]
3333
public partial class MRZTestQuality : IValidatableObject
3434
{
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; }
3571
/// <summary>
3672
/// Initializes a new instance of the <see cref="MRZTestQuality" /> class.
3773
/// </summary>
@@ -50,7 +86,7 @@ protected MRZTestQuality() { }
5086
/// <param name="strCount">strCount (required).</param>
5187
/// <param name="strings">strings (required).</param>
5288
/// <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))
5490
{
5591
this.CHECK_SUMS = cHECKSUMS;
5692
this.CONTRAST_PRINT = cONTRASTPRINT;
@@ -69,18 +105,6 @@ protected MRZTestQuality() { }
69105
this.TEXTUAL_FILLING = tEXTUALFILLING;
70106
}
71107

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-
84108
/// <summary>
85109
/// Gets or Sets DOC_FORMAT
86110
/// </summary>
@@ -93,24 +117,6 @@ protected MRZTestQuality() { }
93117
[DataMember(Name = "MRZ_FORMAT", IsRequired = true, EmitDefaultValue = true)]
94118
public int MRZ_FORMAT { get; set; }
95119

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-
114120
/// <summary>
115121
/// Gets or Sets StrCount
116122
/// </summary>
@@ -123,12 +129,6 @@ protected MRZTestQuality() { }
123129
[DataMember(Name = "Strings", IsRequired = true, EmitDefaultValue = true)]
124130
public List<StringItem> Strings { get; set; }
125131

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-
132132
/// <summary>
133133
/// Returns the string presentation of the object
134134
/// </summary>

0 commit comments

Comments
 (0)