What it does
The DetailedBatch data type stores extended information about a batch.Fields
| Name | Type | Description |
|---|---|---|
Id | int | The ID of the batch. |
Name | string | The name of the batch. |
BatchTypeId | int | The ID of the batch type. 0 corresponds to the Default batch type. |
Priority | int | Batch priority. For possible values, see ProcessingPriority. |
Description | string | A description of the batch. |
Properties | RegistrationProperty[] | The set of registration parameters for the batch. |
PropertiesCount | int | The number of registration parameters. |
StageExternalId | int | The ID of the processing stage in which the task is created. |
CreationDate | long | The date and time when the batch was created, as a FILETIME value. To convert the value, use the conversion example after this table. |
DocumentsCount | int | The number of documents in the batch. |
RecognizedDocumentsCount | int | The number of recognized documents. |
AssembledDocumentsCount | int | The number of assembled documents. |
VerifiedDocumentsCount | int | The number of verified documents. |
ExportedDocumentsCount | int | The number of exported documents. |
PagesCount | int | The number of pages in the batch. |
RecognizedSymbolsCount | int | The number of recognized characters. |
UncertainSymbolsCount | int | The number of uncertain characters. |
VerificationSymbolsCount | int | The number of verified characters. |
CreationDate between long and DateTime in C# as follows:
DateTime dTime;
long lTime;
...
// conversion from long to DateTime
dTime = DateTime.FromFileTime(lTime);
...
// conversion from DateTime to long
lTime = dTime.ToFileTime();
