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

ObjectStore

data class ObjectStore

Object store.

Constructors

<init>

Object store.

ObjectStore(name: String, keyPath: KeyPath, autoIncrement: Boolean, indexes: List<ObjectStoreIndex>)

Properties

autoIncrement

If true, object store has auto increment flag set.

val autoIncrement: Boolean

indexes

Indexes in this object store.

val indexes: List<ObjectStoreIndex>

keyPath

Object store key path.

val keyPath: KeyPath

name

Object store name.

val name: String