ArchiveImportMode
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Import mode for archive row data. Mirrors the asset-repo ImportMode and is serialized as a
string on the wire (e.g. ?mode=Upsert). Archive data export/import concept (AB#4230) §4.1 / §7.
public enum ArchiveImportMode
Inheritance Object → ValueType → Enum → ArchiveImportMode
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields
| Name | Value | Description |
|---|---|---|
| InsertOnly | 0 | Only inserts rows; conflicts on the natural key are an error. Default for raw archives. |
| Upsert | 1 | Inserts or updates rows on natural-key conflict (ON CONFLICT upsert). Required for windowed (time-range / rollup) archives. |