We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6818a5 commit 047f32eCopy full SHA for 047f32e
src/Regula.DocumentReader.WebClient/Api/DocumentReaderApi.cs
@@ -1,5 +1,6 @@
1
using System;
2
using System.Collections.Generic;
3
+using Regula.DocumentReader.WebClient.Client;
4
using Regula.DocumentReader.WebClient.Model;
5
using Regula.DocumentReader.WebClient.Model.Ext;
6
@@ -16,6 +17,12 @@ public DocumentReaderApi(string basePath)
16
17
this._processApi = new ProcessApi(basePath);
18
}
19
20
+ public Configuration Configuration
21
+ {
22
+ get => this._processApi.Configuration;
23
+ set => this._processApi.Configuration = value;
24
+ }
25
+
26
private string License { get; set; }
27
28
public RecognitionResponse Process(ProcessRequest processRequest)
0 commit comments