chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.indexeddb / ObjectStoreIndex

ObjectStoreIndex

data class ObjectStoreIndex

Object store index.

Constructors

<init>

Object store index.

ObjectStoreIndex(name: String, keyPath: KeyPath, unique: Boolean, multiEntry: Boolean)

Properties

keyPath

Index key path.

val keyPath: KeyPath

multiEntry

If true, index allows multiple entries for a key.

val multiEntry: Boolean

name

Index name.

val name: String

unique

If true, index is unique.

val unique: Boolean