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

DatabaseWithObjectStores

data class DatabaseWithObjectStores

Database with an array of object stores.

Constructors

<init>

Database with an array of object stores.

DatabaseWithObjectStores(name: String, version: Double, objectStores: List<ObjectStore>)

Properties

name

Database name.

val name: String

objectStores

Object stores in this database.

val objectStores: List<ObjectStore>

version

Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')

val version: Double