RestoreResponseDTO
Overview
The RestoreResponseDTO object stores the result of using the restore method to update and create entities.
The object contains the number of instances successfully imported and queued for each of entity type as well as the
overall number of items imported and queued.
Parameters
The following table outlines the fields for the RestoreResponseDTO object, providing a brief description of each, along
with sample data where applicable.
| Column | Type | Description | Example |
|---|---|---|---|
restoredEntities | Map<String, ImportResponseDTO> | A map storing an ImportResponseDTO object for each entity type, containing import and queue counts. | {locations=(Import Response), materials=(Import Response),...} |
totalRowsProcessed | Integer | The total number of instances of all entity types successfully imported. | 123 |
totalRowsQueued | Integer | The total number of instances of all entity types queued for importing. | 57 |
Field Details
restoredEntities
A map storing an ImportResponseDTO object for each entity type.
Each key is the name of the entity type (e.g locations, materials, unitOfMeasures).
The ImportResonseDTO object contains the number of instances imported and queued as well as the import batch size and
batch flush delay for each entity type.
totalRowsProcessed
The total number of instances of all entity types successfully imported.
totalRowsQueued
The total number of instances of all entity types queued for importing.