Is your feature request related to a problem? Please describe.
The experimental Process API will change in the new platform version (6.0.0-RC-6). The python api should be able to work with both versions.
Describe the solution you'd like
We should check which fields are available and expose them to the user.
Additional context
ProcessDetailDto
old fields:
String processName;
String documentSourceName;
String pipelineName;
ProcessState state;
long processedDocuments;
new fields:
String processName;
String documentSourceName;
long numberOfTotalDocuments;
long numberOfSuccessfulDocuments;
long numberOfUnsuccessfulDocuments;
List errorMessages;
String precedingProcessName;
String pipelineName;
ProcessState state;
Is your feature request related to a problem? Please describe. The experimental Process API will change in the new platform version (6.0.0-RC-6). The python api should be able to work with both versions.
Describe the solution you'd like We should check which fields are available and expose them to the user.
Additional context ProcessDetailDto
old fields: String processName; String documentSourceName; String pipelineName; ProcessState state; long processedDocuments;
new fields: String processName; String documentSourceName; long numberOfTotalDocuments; long numberOfSuccessfulDocuments; long numberOfUnsuccessfulDocuments; List errorMessages;
String precedingProcessName;
String pipelineName;
ProcessState state;