RequestDataParameter

@Serializable
data class RequestDataParameter(val securityOrigin: String? = null, val storageKey: String? = null, val storageBucket: Storage.StorageBucket? = null, val databaseName: String, val objectStoreName: String, val indexName: String, val skipCount: Int, val pageSize: Int, val keyRange: IndexedDB.KeyRange? = null)

Constructors

Link copied to clipboard
constructor(securityOrigin: String? = null, storageKey: String? = null, storageBucket: Storage.StorageBucket? = null, databaseName: String, objectStoreName: String, indexName: String, skipCount: Int, pageSize: Int, keyRange: IndexedDB.KeyRange? = null)

Properties

Link copied to clipboard

Database name.

Link copied to clipboard

Index name, empty string for object store data requests.

Link copied to clipboard

Key range.

Link copied to clipboard

Object store name.

Link copied to clipboard

Number of records to fetch.

Link copied to clipboard
val securityOrigin: String? = null

At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin.

Link copied to clipboard

Number of records to skip.

Link copied to clipboard

Storage bucket. If not specified, it uses the default bucket.

Link copied to clipboard
val storageKey: String? = null

Storage key.