Skip to content

Commit d8629a7

Browse files
Merge pull request #131 from regulaforensics/develop
develop -> master
2 parents c1a6a0c + 7825360 commit d8629a7

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

.openapi-generator-ignore

+1
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ src/Regula.DocumentReader.WebClient/Model/AuthenticityCheckResult.cs
2121
# classes, modified after generation
2222
src/Regula.DocumentReader.WebClient/Model/ResultItem.cs
2323
src/Regula.DocumentReader.WebClient/Model/AuthenticityCheckResultItem.cs
24+
src/Regula.DocumentReader.WebClient/Model/AuthParams.cs

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

+15-15
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public partial class AuthParams : IEquatable<AuthParams>, IValidatableObject
4848
/// <param name="checkPhotoEmbedding">This parameter is used to enable Owner&#39;s photo embedding check (is photo printed or sticked).</param>
4949
/// <param name="checkPhotoComparison">This parameter is used to enable Portrait comparison check.</param>
5050
/// <param name="checkLetterScreen">This parameter is used to enable LetterScreen check.</param>
51-
public AuthParams(bool checkLiveness = default(bool), LivenessParams livenessParams = default(LivenessParams), bool checkUVLuminiscence = default(bool), bool checkIRB900 = default(bool), bool checkImagePatterns = default(bool), bool checkFibers = default(bool), bool checkExtMRZ = default(bool), bool checkExtOCR = default(bool), bool checkAxial = default(bool), bool checkBarcodeFormat = default(bool), bool checkIRVisibility = default(bool), bool checkIPI = default(bool), bool checkPhotoEmbedding = default(bool), bool checkPhotoComparison = default(bool), bool checkLetterScreen = default(bool))
51+
public AuthParams(bool? checkLiveness = default(bool?), LivenessParams livenessParams = default(LivenessParams), bool? checkUVLuminiscence = default(bool?), bool? checkIRB900 = default(bool?), bool? checkImagePatterns = default(bool?), bool? checkFibers = default(bool?), bool? checkExtMRZ = default(bool?), bool? checkExtOCR = default(bool?), bool? checkAxial = default(bool?), bool? checkBarcodeFormat = default(bool?), bool? checkIRVisibility = default(bool?), bool? checkIPI = default(bool?), bool? checkPhotoEmbedding = default(bool?), bool? checkPhotoComparison = default(bool?), bool? checkLetterScreen = default(bool?))
5252
{
5353
this.CheckLiveness = checkLiveness;
5454
this.LivenessParams = livenessParams;
@@ -72,7 +72,7 @@ public partial class AuthParams : IEquatable<AuthParams>, IValidatableObject
7272
/// </summary>
7373
/// <value>This parameter is used to enable document liveness check</value>
7474
[DataMember(Name="checkLiveness", EmitDefaultValue=false)]
75-
public bool CheckLiveness { get; set; }
75+
public bool? CheckLiveness { get; set; }
7676

7777
/// <summary>
7878
/// Gets or Sets LivenessParams
@@ -85,91 +85,91 @@ public partial class AuthParams : IEquatable<AuthParams>, IValidatableObject
8585
/// </summary>
8686
/// <value>This parameter is used to enable Document luminescence check in UV light</value>
8787
[DataMember(Name="checkUVLuminiscence", EmitDefaultValue=false)]
88-
public bool CheckUVLuminiscence { get; set; }
88+
public bool? CheckUVLuminiscence { get; set; }
8989

9090
/// <summary>
9191
/// This parameter is used to enable B900 ink MRZ contrast check in IR light
9292
/// </summary>
9393
/// <value>This parameter is used to enable B900 ink MRZ contrast check in IR light</value>
9494
[DataMember(Name="checkIRB900", EmitDefaultValue=false)]
95-
public bool CheckIRB900 { get; set; }
95+
public bool? CheckIRB900 { get; set; }
9696

9797
/// <summary>
9898
/// This parameter is used to enable Image patterns presence/absence check (position, shape, color)
9999
/// </summary>
100100
/// <value>This parameter is used to enable Image patterns presence/absence check (position, shape, color)</value>
101101
[DataMember(Name="checkImagePatterns", EmitDefaultValue=false)]
102-
public bool CheckImagePatterns { get; set; }
102+
public bool? CheckImagePatterns { get; set; }
103103

104104
/// <summary>
105105
/// This parameter is used to enable Fibers detection
106106
/// </summary>
107107
/// <value>This parameter is used to enable Fibers detection</value>
108108
[DataMember(Name="checkFibers", EmitDefaultValue=false)]
109-
public bool CheckFibers { get; set; }
109+
public bool? CheckFibers { get; set; }
110110

111111
/// <summary>
112112
/// This parameter is used to enable Extended MRZ Check
113113
/// </summary>
114114
/// <value>This parameter is used to enable Extended MRZ Check</value>
115115
[DataMember(Name="checkExtMRZ", EmitDefaultValue=false)]
116-
public bool CheckExtMRZ { get; set; }
116+
public bool? CheckExtMRZ { get; set; }
117117

118118
/// <summary>
119119
/// This parameter is used to enable Extended OCR Check
120120
/// </summary>
121121
/// <value>This parameter is used to enable Extended OCR Check</value>
122122
[DataMember(Name="checkExtOCR", EmitDefaultValue=false)]
123-
public bool CheckExtOCR { get; set; }
123+
public bool? CheckExtOCR { get; set; }
124124

125125
/// <summary>
126126
/// This parameter is used to enable laminate integrity check in axial light
127127
/// </summary>
128128
/// <value>This parameter is used to enable laminate integrity check in axial light</value>
129129
[DataMember(Name="checkAxial", EmitDefaultValue=false)]
130-
public bool CheckAxial { get; set; }
130+
public bool? CheckAxial { get; set; }
131131

132132
/// <summary>
133133
/// This parameter is used to enable Barcode format check (code metadata, data format, contents format, etc.)
134134
/// </summary>
135135
/// <value>This parameter is used to enable Barcode format check (code metadata, data format, contents format, etc.)</value>
136136
[DataMember(Name="checkBarcodeFormat", EmitDefaultValue=false)]
137-
public bool CheckBarcodeFormat { get; set; }
137+
public bool? CheckBarcodeFormat { get; set; }
138138

139139
/// <summary>
140140
/// This parameter is used to enable Document elements visibility check in IR light
141141
/// </summary>
142142
/// <value>This parameter is used to enable Document elements visibility check in IR light</value>
143143
[DataMember(Name="checkIRVisibility", EmitDefaultValue=false)]
144-
public bool CheckIRVisibility { get; set; }
144+
public bool? CheckIRVisibility { get; set; }
145145

146146
/// <summary>
147147
/// This parameter is used to enable Invisible Personal Information (IPI) check
148148
/// </summary>
149149
/// <value>This parameter is used to enable Invisible Personal Information (IPI) check</value>
150150
[DataMember(Name="checkIPI", EmitDefaultValue=false)]
151-
public bool CheckIPI { get; set; }
151+
public bool? CheckIPI { get; set; }
152152

153153
/// <summary>
154154
/// This parameter is used to enable Owner&#39;s photo embedding check (is photo printed or sticked)
155155
/// </summary>
156156
/// <value>This parameter is used to enable Owner&#39;s photo embedding check (is photo printed or sticked)</value>
157157
[DataMember(Name="checkPhotoEmbedding", EmitDefaultValue=false)]
158-
public bool CheckPhotoEmbedding { get; set; }
158+
public bool? CheckPhotoEmbedding { get; set; }
159159

160160
/// <summary>
161161
/// This parameter is used to enable Portrait comparison check
162162
/// </summary>
163163
/// <value>This parameter is used to enable Portrait comparison check</value>
164164
[DataMember(Name="checkPhotoComparison", EmitDefaultValue=false)]
165-
public bool CheckPhotoComparison { get; set; }
165+
public bool? CheckPhotoComparison { get; set; }
166166

167167
/// <summary>
168168
/// This parameter is used to enable LetterScreen check
169169
/// </summary>
170170
/// <value>This parameter is used to enable LetterScreen check</value>
171171
[DataMember(Name="checkLetterScreen", EmitDefaultValue=false)]
172-
public bool CheckLetterScreen { get; set; }
172+
public bool? CheckLetterScreen { get; set; }
173173

174174
/// <summary>
175175
/// Returns the string presentation of the object

0 commit comments

Comments
 (0)