SetSharedStorageEntryRequest

@Serializable
data class SetSharedStorageEntryRequest(val ownerOrigin: String, val key: String, val value: String, val ignoreIfPresent: Boolean? = null)

Request object containing input parameters for the StorageDomain.setSharedStorageEntry command.

Constructors

Link copied to clipboard
constructor(ownerOrigin: String, key: String, value: String, ignoreIfPresent: Boolean? = null)

Types

Link copied to clipboard
class Builder(val ownerOrigin: String, val key: String, val value: String)

A builder for SetSharedStorageEntryRequest, which allows setting the optional parameters of the StorageDomain.setSharedStorageEntry command via a lambda.

Properties

Link copied to clipboard

If ignoreIfPresent is included and true, then only sets the entry if key doesn't already exist.

Link copied to clipboard
val key: String

(undocumented in the protocol definition)

Link copied to clipboard

(undocumented in the protocol definition)

Link copied to clipboard

(undocumented in the protocol definition)