@@ -48,7 +48,7 @@ public partial class AuthParams : IEquatable<AuthParams>, IValidatableObject
48
48
/// <param name="checkPhotoEmbedding">This parameter is used to enable Owner's photo embedding check (is photo printed or sticked).</param>
49
49
/// <param name="checkPhotoComparison">This parameter is used to enable Portrait comparison check.</param>
50
50
/// <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 ? ) )
52
52
{
53
53
this . CheckLiveness = checkLiveness ;
54
54
this . LivenessParams = livenessParams ;
@@ -72,7 +72,7 @@ public partial class AuthParams : IEquatable<AuthParams>, IValidatableObject
72
72
/// </summary>
73
73
/// <value>This parameter is used to enable document liveness check</value>
74
74
[ DataMember ( Name = "checkLiveness" , EmitDefaultValue = false ) ]
75
- public bool CheckLiveness { get ; set ; }
75
+ public bool ? CheckLiveness { get ; set ; }
76
76
77
77
/// <summary>
78
78
/// Gets or Sets LivenessParams
@@ -85,91 +85,91 @@ public partial class AuthParams : IEquatable<AuthParams>, IValidatableObject
85
85
/// </summary>
86
86
/// <value>This parameter is used to enable Document luminescence check in UV light</value>
87
87
[ DataMember ( Name = "checkUVLuminiscence" , EmitDefaultValue = false ) ]
88
- public bool CheckUVLuminiscence { get ; set ; }
88
+ public bool ? CheckUVLuminiscence { get ; set ; }
89
89
90
90
/// <summary>
91
91
/// This parameter is used to enable B900 ink MRZ contrast check in IR light
92
92
/// </summary>
93
93
/// <value>This parameter is used to enable B900 ink MRZ contrast check in IR light</value>
94
94
[ DataMember ( Name = "checkIRB900" , EmitDefaultValue = false ) ]
95
- public bool CheckIRB900 { get ; set ; }
95
+ public bool ? CheckIRB900 { get ; set ; }
96
96
97
97
/// <summary>
98
98
/// This parameter is used to enable Image patterns presence/absence check (position, shape, color)
99
99
/// </summary>
100
100
/// <value>This parameter is used to enable Image patterns presence/absence check (position, shape, color)</value>
101
101
[ DataMember ( Name = "checkImagePatterns" , EmitDefaultValue = false ) ]
102
- public bool CheckImagePatterns { get ; set ; }
102
+ public bool ? CheckImagePatterns { get ; set ; }
103
103
104
104
/// <summary>
105
105
/// This parameter is used to enable Fibers detection
106
106
/// </summary>
107
107
/// <value>This parameter is used to enable Fibers detection</value>
108
108
[ DataMember ( Name = "checkFibers" , EmitDefaultValue = false ) ]
109
- public bool CheckFibers { get ; set ; }
109
+ public bool ? CheckFibers { get ; set ; }
110
110
111
111
/// <summary>
112
112
/// This parameter is used to enable Extended MRZ Check
113
113
/// </summary>
114
114
/// <value>This parameter is used to enable Extended MRZ Check</value>
115
115
[ DataMember ( Name = "checkExtMRZ" , EmitDefaultValue = false ) ]
116
- public bool CheckExtMRZ { get ; set ; }
116
+ public bool ? CheckExtMRZ { get ; set ; }
117
117
118
118
/// <summary>
119
119
/// This parameter is used to enable Extended OCR Check
120
120
/// </summary>
121
121
/// <value>This parameter is used to enable Extended OCR Check</value>
122
122
[ DataMember ( Name = "checkExtOCR" , EmitDefaultValue = false ) ]
123
- public bool CheckExtOCR { get ; set ; }
123
+ public bool ? CheckExtOCR { get ; set ; }
124
124
125
125
/// <summary>
126
126
/// This parameter is used to enable laminate integrity check in axial light
127
127
/// </summary>
128
128
/// <value>This parameter is used to enable laminate integrity check in axial light</value>
129
129
[ DataMember ( Name = "checkAxial" , EmitDefaultValue = false ) ]
130
- public bool CheckAxial { get ; set ; }
130
+ public bool ? CheckAxial { get ; set ; }
131
131
132
132
/// <summary>
133
133
/// This parameter is used to enable Barcode format check (code metadata, data format, contents format, etc.)
134
134
/// </summary>
135
135
/// <value>This parameter is used to enable Barcode format check (code metadata, data format, contents format, etc.)</value>
136
136
[ DataMember ( Name = "checkBarcodeFormat" , EmitDefaultValue = false ) ]
137
- public bool CheckBarcodeFormat { get ; set ; }
137
+ public bool ? CheckBarcodeFormat { get ; set ; }
138
138
139
139
/// <summary>
140
140
/// This parameter is used to enable Document elements visibility check in IR light
141
141
/// </summary>
142
142
/// <value>This parameter is used to enable Document elements visibility check in IR light</value>
143
143
[ DataMember ( Name = "checkIRVisibility" , EmitDefaultValue = false ) ]
144
- public bool CheckIRVisibility { get ; set ; }
144
+ public bool ? CheckIRVisibility { get ; set ; }
145
145
146
146
/// <summary>
147
147
/// This parameter is used to enable Invisible Personal Information (IPI) check
148
148
/// </summary>
149
149
/// <value>This parameter is used to enable Invisible Personal Information (IPI) check</value>
150
150
[ DataMember ( Name = "checkIPI" , EmitDefaultValue = false ) ]
151
- public bool CheckIPI { get ; set ; }
151
+ public bool ? CheckIPI { get ; set ; }
152
152
153
153
/// <summary>
154
154
/// This parameter is used to enable Owner's photo embedding check (is photo printed or sticked)
155
155
/// </summary>
156
156
/// <value>This parameter is used to enable Owner's photo embedding check (is photo printed or sticked)</value>
157
157
[ DataMember ( Name = "checkPhotoEmbedding" , EmitDefaultValue = false ) ]
158
- public bool CheckPhotoEmbedding { get ; set ; }
158
+ public bool ? CheckPhotoEmbedding { get ; set ; }
159
159
160
160
/// <summary>
161
161
/// This parameter is used to enable Portrait comparison check
162
162
/// </summary>
163
163
/// <value>This parameter is used to enable Portrait comparison check</value>
164
164
[ DataMember ( Name = "checkPhotoComparison" , EmitDefaultValue = false ) ]
165
- public bool CheckPhotoComparison { get ; set ; }
165
+ public bool ? CheckPhotoComparison { get ; set ; }
166
166
167
167
/// <summary>
168
168
/// This parameter is used to enable LetterScreen check
169
169
/// </summary>
170
170
/// <value>This parameter is used to enable LetterScreen check</value>
171
171
[ DataMember ( Name = "checkLetterScreen" , EmitDefaultValue = false ) ]
172
- public bool CheckLetterScreen { get ; set ; }
172
+ public bool ? CheckLetterScreen { get ; set ; }
173
173
174
174
/// <summary>
175
175
/// Returns the string presentation of the object
0 commit comments