You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
/// Initializes a new instance of the <see cref="BsiTr03135" /> class.
37
+
/// </summary>
38
+
/// <param name="generateResult">When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results..</param>
39
+
publicBsiTr03135(bool?generateResult=default)
40
+
{
41
+
this.GenerateResult=generateResult;
42
+
}
43
+
44
+
/// <summary>
45
+
/// When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results.
46
+
/// </summary>
47
+
/// <value>When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results.</value>
Copy file name to clipboardExpand all lines: src/Regula.DocumentReader.WebClient/Model/ProcessParams.cs
+7-8Lines changed: 7 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -143,8 +143,8 @@ protected ProcessParams() { }
143
143
/// <param name="disableAuthResolutionFilter">This parameter if enabled will ignore the minimum barcode resolution needed to start processing..</param>
144
144
/// <param name="strictSecurityChecks">When enabled, this parameter marks security checks that don’t meet minimum requirements as 'Failed' (instead of 'WasNotDone'), which causes the overall security status to be 'Failed'..</param>
145
145
/// <param name="returnTransliteratedFields">Allows transliteration to be turned on or off; by default, it is enabled..</param>
146
-
/// <param name="bsiTr03135Results">When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results..</param>
@@ -646,11 +646,10 @@ public ProcessParams(bool? generateDTCVC = default, List<LCID> lcidFilter = defa
646
646
publicbool?ReturnTransliteratedFields{get;set;}
647
647
648
648
/// <summary>
649
-
/// When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results.
649
+
/// Gets or Sets BsiTr03135
650
650
/// </summary>
651
-
/// <value>When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results.</value>
0 commit comments