Dedupe

data class Dedupe(val primaryKey: List<List<String>>, val cursor: List<String>) : ImportType

Constructors

Link copied to clipboard
constructor(primaryKey: List<List<String>>, cursor: List<String>)

Properties

Link copied to clipboard

theoretically, the path to the cursor. In practice, most destinations only support cursors at the root level, i.e. listOf(cursorField).

Link copied to clipboard

theoretically, the path to the fields in the PK. In practice, most destinations only support PK at the root level, i.e. listOf(listOf(pkField1), listOf(pkField2), etc).