Document
What it does
The Document data type stores information about a document.
Fields
Name | Type | Description |
Id | int |
The ID of the document. It is recommended to set the document ID before the document is added into a batch. Use the GetBatchIdsRange method to reserved IDs for new documents. |
BatchId | int | The ID of the batch |
ParentId | int |
The ID of the parent document of the set. If a new document should be part of a set, this field should be assigned the value of the parent document of the set. If a new document should not be part of any set, set the value of the field to 0. Important !The parent document must be created before child documents are created. |
ChildrenOrder | ChildrenOrder [] |
A set of child documents enabling the sorting of documents in the set. When data are read from the server, the field is filled out automatically. If this field is empty, the documents in the set will be arranged in the order in which they were added. |
DocIndex | int | Document index |
TemplateName | string | The name of the Document Definition |
ProcessingStageType | int | The type of the processing stage; values come from ProcessingStageType |
Comment | string | Comment |
Pages | Page[] | The set of pages in the document |
IsProcessed | bool | A flag that shows whether the document has been processed or not |
HasProcessingErrors | bool | A flag that shows whether there were processing errors |
HasDocumentErrors | bool | A flag that shows whether there are errors in the document (e.g. format errors, rules errors, assembly errors) |
ErrorText | string | A description of the document processing errors |
ExternalId | string | The external ID of the document |
Properties | RegistrationProperty[] | The set of registration parameters for the document |
Priority | Priority[] | Document priority |
FileVersion | int | The version of the document file on the server |
OwnerId | int | The ID of the user or group who owns the project |
StageExternalId | int | The ID of the processing stage in which the task was created (unique within the batch type) |
TaskId | int | The ID of the task the document belongs to |
UncertainSymbols | int | The number of uncertain characters |
VerificationSymbols | int | The number of verified characters |
TotalSymbols | int | The total number of characters in the document |
HasErrors | bool | A flag that shows whether there are any validation rule errors |
HasWarnings | bool | A flag that shows whether there are any validation rule warnings |
HasAssemblingErrors | bool | A flag that shows whether there were assembling errors |
HasAttachments | bool | A flag that shows whether the document has attachments |
Flags | int |
A set of flags that describe the status of the document. The value of a field is a combination of the values of the flags, which include:
Remarque : Only those flags are listed which are useful when working with the tasks and methods of the Web Services API. |
4/12/2024 6:16:03 PM