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 dcfc883 commit a3cf17fCopy full SHA for a3cf17f
client/src/main/java/com/regula/documentreader/webclient/api/DocumentReaderApi.java
@@ -90,6 +90,13 @@ public RecognitionResponse process(
90
return new RecognitionResponse(response);
91
}
92
93
+ public RecognitionResponse process(
94
+ ProcessRequest processRequest, HashMap<String, String> headers) {
95
+ processRequest.getSystemInfo().setLicense(this.license);
96
+ ProcessResponse response = processApi.apiProcess(processRequest, "", headers);
97
+ return new RecognitionResponse(response);
98
+ }
99
+
100
public RecognitionResponse process(byte[] processRequest, ProcessParams processParams) {
101
if (processParams != null) {
102
Gson converter = processApi.getApiClient().getJSON().getGson();
0 commit comments