diff --git a/src/Regula.DocumentReader.WebClient/Model/ProcessParams.cs b/src/Regula.DocumentReader.WebClient/Model/ProcessParams.cs
index 20d6e0d..288d8e5 100644
--- a/src/Regula.DocumentReader.WebClient/Model/ProcessParams.cs
+++ b/src/Regula.DocumentReader.WebClient/Model/ProcessParams.cs
@@ -117,7 +117,6 @@ protected ProcessParams() { }
/// This options allows specifying the minimal age in years of the document holder for the document to be considered valid..
/// When enabled, returns input images in output. Disabled by default..
/// This option allows limiting MRZ formats to be recognized by specifying them in array..
- /// When enabled, make sure that in series processing MRZ is located fully inside the result document image, if present on the document. Enabling this option may add extra processing time, by disabling optimizations, but allows more stability in output image quality. Disabled by default..
/// This option can be disabled to stop parsing after barcode is read. Enabled by default..
/// convertCase.
/// When enabled, the Surname and GivenNames fields from MRZ will be divided into ft_First_Name, ft_Second_Name, ft_Third_Name, ft_Fourth_Name, ft_Last_Name fields. Disabled by default..
@@ -146,7 +145,8 @@ protected ProcessParams() { }
/// bsiTr03135.
/// When disabled, date of expiry doesn't affect the MRZ and text statuses..
/// This parameter is used to enable Visible Digital Seal check. Disabled by default..
- public ProcessParams(bool? generateDTCVC = default, List lcidFilter = default, bool? checkLiveness = default, List lcidIgnoreFilter = default, bool? oneShotIdentification = default, bool? useFaceApi = default, FaceApi? faceApi = default, bool? doDetectCan = default, int? imageOutputMaxHeight = default, int? imageOutputMaxWidth = default, Scenario scenario = default, List resultTypeOutput = default, bool? doublePageSpread = default, bool? generateDoublePageSpreadImage = default, List fieldTypesFilter = default, List fieldTypesIgnoreFilter = default, string? dateFormat = default, MeasureSystem? measureSystem = default, int? imageDpiOutMax = default, bool? alreadyCropped = default, Dictionary customParams = default, List config = default, bool? log = default, LogLevel? logLevel = default, int? forceDocID = default, bool? matchTextFieldMask = default, bool? fastDocDetect = default, bool? updateOCRValidityByGlare = default, bool? checkRequiredTextFields = default, bool? returnCroppedBarcode = default, ImageQA? imageQa = default, bool? strictImageQuality = default, bool? respectImageQuality = default, DocumentFormat? forceDocFormat = default, bool? noGraphics = default, bool? depersonalizeLog = default, bool? multiDocOnImage = default, int? shiftExpiryDate = default, int? minimalHolderAge = default, bool? returnUncroppedImage = default, List mrzFormatsFilter = default, bool? forceReadMrzBeforeLocate = default, bool? parseBarcodes = default, TextPostProcessing? convertCase = default, bool? splitNames = default, bool? disablePerforationOCR = default, List documentGroupFilter = default, long? processAuth = default, int? deviceId = default, int? deviceType = default, string? deviceTypeHex = default, bool? ignoreDeviceIdFromImage = default, List documentIdList = default, ProcessParamsRfid? rfid = default, bool? checkAuth = default, AuthParams? authParams = default, MrzDetectModeEnum? mrzDetectMode = default, bool? generateNumericCodes = default, bool? strictBarcodeDigitalSignatureCheck = default, bool? selectLongestNames = default, List doBarcodes = default, bool? strictDLCategoryExpiry = default, bool? generateAlpha2Codes = default, int? pdfPagesLimit = default, bool? disableAuthResolutionFilter = default, bool? strictSecurityChecks = default, bool? returnTransliteratedFields = default, BsiTr03135? bsiTr03135 = default, bool? strictExpiryDate = default, bool? checkVDS = default)
+ /// When enabled, the age check status affects the overall status..
+ public ProcessParams(bool? generateDTCVC = default, List lcidFilter = default, bool? checkLiveness = default, List lcidIgnoreFilter = default, bool? oneShotIdentification = default, bool? useFaceApi = default, FaceApi? faceApi = default, bool? doDetectCan = default, int? imageOutputMaxHeight = default, int? imageOutputMaxWidth = default, Scenario scenario = default, List resultTypeOutput = default, bool? doublePageSpread = default, bool? generateDoublePageSpreadImage = default, List fieldTypesFilter = default, List fieldTypesIgnoreFilter = default, string? dateFormat = default, MeasureSystem? measureSystem = default, int? imageDpiOutMax = default, bool? alreadyCropped = default, Dictionary customParams = default, List config = default, bool? log = default, LogLevel? logLevel = default, int? forceDocID = default, bool? matchTextFieldMask = default, bool? fastDocDetect = default, bool? updateOCRValidityByGlare = default, bool? checkRequiredTextFields = default, bool? returnCroppedBarcode = default, ImageQA? imageQa = default, bool? strictImageQuality = default, bool? respectImageQuality = default, DocumentFormat? forceDocFormat = default, bool? noGraphics = default, bool? depersonalizeLog = default, bool? multiDocOnImage = default, int? shiftExpiryDate = default, int? minimalHolderAge = default, bool? returnUncroppedImage = default, List mrzFormatsFilter = default, bool? parseBarcodes = default, TextPostProcessing? convertCase = default, bool? splitNames = default, bool? disablePerforationOCR = default, List documentGroupFilter = default, long? processAuth = default, int? deviceId = default, int? deviceType = default, string? deviceTypeHex = default, bool? ignoreDeviceIdFromImage = default, List documentIdList = default, ProcessParamsRfid? rfid = default, bool? checkAuth = default, AuthParams? authParams = default, MrzDetectModeEnum? mrzDetectMode = default, bool? generateNumericCodes = default, bool? strictBarcodeDigitalSignatureCheck = default, bool? selectLongestNames = default, List doBarcodes = default, bool? strictDLCategoryExpiry = default, bool? generateAlpha2Codes = default, int? pdfPagesLimit = default, bool? disableAuthResolutionFilter = default, bool? strictSecurityChecks = default, bool? returnTransliteratedFields = default, BsiTr03135? bsiTr03135 = default, bool? strictExpiryDate = default, bool? checkVDS = default, bool? strictAgeCheck = default)
{
this.Scenario = scenario;
this.GenerateDTCVC = generateDTCVC;
@@ -189,7 +189,6 @@ public ProcessParams(bool? generateDTCVC = default, List lcidFilter = defa
this.MinimalHolderAge = minimalHolderAge;
this.ReturnUncroppedImage = returnUncroppedImage;
this.MrzFormatsFilter = mrzFormatsFilter;
- this.ForceReadMrzBeforeLocate = forceReadMrzBeforeLocate;
this.ParseBarcodes = parseBarcodes;
this.ConvertCase = convertCase;
this.SplitNames = splitNames;
@@ -218,6 +217,7 @@ public ProcessParams(bool? generateDTCVC = default, List lcidFilter = defa
this.BsiTr03135 = bsiTr03135;
this.StrictExpiryDate = strictExpiryDate;
this.CheckVDS = checkVDS;
+ this.StrictAgeCheck = strictAgeCheck;
}
///
@@ -483,13 +483,6 @@ public ProcessParams(bool? generateDTCVC = default, List lcidFilter = defa
[DataMember(Name = "mrzFormatsFilter", EmitDefaultValue = false)]
public List? MrzFormatsFilter { get; set; }
- ///
- /// When enabled, make sure that in series processing MRZ is located fully inside the result document image, if present on the document. Enabling this option may add extra processing time, by disabling optimizations, but allows more stability in output image quality. Disabled by default.
- ///
- /// When enabled, make sure that in series processing MRZ is located fully inside the result document image, if present on the document. Enabling this option may add extra processing time, by disabling optimizations, but allows more stability in output image quality. Disabled by default.
- [DataMember(Name = "forceReadMrzBeforeLocate", EmitDefaultValue = false)]
- public bool? ForceReadMrzBeforeLocate { get; set; }
-
///
/// This option can be disabled to stop parsing after barcode is read. Enabled by default.
///
@@ -669,6 +662,13 @@ public ProcessParams(bool? generateDTCVC = default, List lcidFilter = defa
[DataMember(Name = "checkVDS", EmitDefaultValue = false)]
public bool? CheckVDS { get; set; }
+ ///
+ /// When enabled, the age check status affects the overall status.
+ ///
+ /// When enabled, the age check status affects the overall status.
+ [DataMember(Name = "strictAgeCheck", EmitDefaultValue = false)]
+ public bool? StrictAgeCheck { get; set; }
+
///
/// Returns the string presentation of the object
///
@@ -718,7 +718,6 @@ public override string ToString()
sb.Append(" MinimalHolderAge: ").Append(MinimalHolderAge).Append("\n");
sb.Append(" ReturnUncroppedImage: ").Append(ReturnUncroppedImage).Append("\n");
sb.Append(" MrzFormatsFilter: ").Append(MrzFormatsFilter).Append("\n");
- sb.Append(" ForceReadMrzBeforeLocate: ").Append(ForceReadMrzBeforeLocate).Append("\n");
sb.Append(" ParseBarcodes: ").Append(ParseBarcodes).Append("\n");
sb.Append(" ConvertCase: ").Append(ConvertCase).Append("\n");
sb.Append(" SplitNames: ").Append(SplitNames).Append("\n");
@@ -747,6 +746,7 @@ public override string ToString()
sb.Append(" BsiTr03135: ").Append(BsiTr03135).Append("\n");
sb.Append(" StrictExpiryDate: ").Append(StrictExpiryDate).Append("\n");
sb.Append(" CheckVDS: ").Append(CheckVDS).Append("\n");
+ sb.Append(" StrictAgeCheck: ").Append(StrictAgeCheck).Append("\n");
sb.Append("}\n");
return sb.ToString();
}