Enum ImportSaveType
The type of import operation
Namespace: LemonEdge.API.Entities
Assembly: API.dll
Syntax
public enum ImportSaveType : short
Fields
Name | Description |
---|---|
Batch | Import and validate all pieces of data at once, and only commit it to the database at the end in one batch transaction. If any data fails then the whole import fails and nothing is changed in the system. |
Sequential | Import each piece of data one at a time. If any fail just report those failures and continue on. |
ValidateOnly | Only validate the imported data, do not actually commit the changes |