@@ -51,7 +51,9 @@ public partial class AuthParams : IValidatableObject
5151 /// <param name="checkPhotoComparison">This parameter is used to enable Portrait comparison check.</param>
5252 /// <param name="checkLetterScreen">This parameter is used to enable LetterScreen check.</param>
5353 /// <param name="checkSecurityText">This parameter is used to enable Security text check.</param>
54- public AuthParams ( bool ? checkLiveness = default , LivenessParams ? livenessParams = default , bool ? checkUVLuminiscence = default , bool ? checkIRB900 = default , bool ? checkImagePatterns = default , bool ? checkFibers = default , bool ? checkExtMRZ = default , bool ? checkExtOCR = default , bool ? checkAxial = default , bool ? checkBarcodeFormat = default , bool ? checkIRVisibility = default , bool ? checkIPI = default , bool ? checkPhotoEmbedding = default , bool ? checkPhotoComparison = default , bool ? checkLetterScreen = default , bool ? checkSecurityText = default )
54+ /// <param name="checkProperties">Set to true to enable detection of the document properties, such as holder's signature and other attributes..</param>
55+ /// <param name="propertiesParams">propertiesParams.</param>
56+ public AuthParams ( bool ? checkLiveness = default , LivenessParams ? livenessParams = default , bool ? checkUVLuminiscence = default , bool ? checkIRB900 = default , bool ? checkImagePatterns = default , bool ? checkFibers = default , bool ? checkExtMRZ = default , bool ? checkExtOCR = default , bool ? checkAxial = default , bool ? checkBarcodeFormat = default , bool ? checkIRVisibility = default , bool ? checkIPI = default , bool ? checkPhotoEmbedding = default , bool ? checkPhotoComparison = default , bool ? checkLetterScreen = default , bool ? checkSecurityText = default , bool ? checkProperties = default , PropertiesParams ? propertiesParams = default )
5557 {
5658 this . CheckLiveness = checkLiveness ;
5759 this . LivenessParams = livenessParams ;
@@ -69,6 +71,8 @@ public AuthParams(bool? checkLiveness = default, LivenessParams? livenessParams
6971 this . CheckPhotoComparison = checkPhotoComparison ;
7072 this . CheckLetterScreen = checkLetterScreen ;
7173 this . CheckSecurityText = checkSecurityText ;
74+ this . CheckProperties = checkProperties ;
75+ this . PropertiesParams = propertiesParams ;
7276 }
7377
7478 /// <summary>
@@ -182,6 +186,19 @@ public AuthParams(bool? checkLiveness = default, LivenessParams? livenessParams
182186 [ DataMember ( Name = "checkSecurityText" , EmitDefaultValue = false ) ]
183187 public bool ? CheckSecurityText { get ; set ; }
184188
189+ /// <summary>
190+ /// Set to true to enable detection of the document properties, such as holder's signature and other attributes.
191+ /// </summary>
192+ /// <value>Set to true to enable detection of the document properties, such as holder's signature and other attributes.</value>
193+ [ DataMember ( Name = "checkProperties" , EmitDefaultValue = false ) ]
194+ public bool ? CheckProperties { get ; set ; }
195+
196+ /// <summary>
197+ /// Gets or Sets PropertiesParams
198+ /// </summary>
199+ [ DataMember ( Name = "propertiesParams" , EmitDefaultValue = false ) ]
200+ public PropertiesParams ? PropertiesParams { get ; set ; }
201+
185202 /// <summary>
186203 /// Returns the string presentation of the object
187204 /// </summary>
@@ -206,6 +223,8 @@ public override string ToString()
206223 sb . Append ( " CheckPhotoComparison: " ) . Append ( CheckPhotoComparison ) . Append ( "\n " ) ;
207224 sb . Append ( " CheckLetterScreen: " ) . Append ( CheckLetterScreen ) . Append ( "\n " ) ;
208225 sb . Append ( " CheckSecurityText: " ) . Append ( CheckSecurityText ) . Append ( "\n " ) ;
226+ sb . Append ( " CheckProperties: " ) . Append ( CheckProperties ) . Append ( "\n " ) ;
227+ sb . Append ( " PropertiesParams: " ) . Append ( PropertiesParams ) . Append ( "\n " ) ;
209228 sb . Append ( "}\n " ) ;
210229 return sb . ToString ( ) ;
211230 }
0 commit comments