Item

data class Item(val key: String, val jsonData: String, val dateCreated: Long, val dateUpdated: Long, val dateExpires: Long?)

Represents a value associated with each key in SyncMapJava.

Constructors

Link copied to clipboard
constructor(key: String, jsonData: String, dateCreated: Long, dateUpdated: Long, dateExpires: Long?)

Properties

Link copied to clipboard

A date when this Item was created.

Link copied to clipboard

A date this Item will expire, null means will not expire.

Link copied to clipboard

A date when this Item was last updated.

Link copied to clipboard

Value of the Item as a serialised JSON object.

Link copied to clipboard
val key: String

Key of the Item.