StorageRecord
public protocol StorageRecord : StorageRecordID
The composite identifier which represents a record from the storage engine.
-
- UTC timestamp when the record was created.
Declaration
Swift
var createdAt : Int -
- UTC timestamp when the record will expire.
Declaration
Swift
var expiresAt : Int -
- The read permission for the record.
Declaration
Swift
var permissionRead : PermissionRead -
- The write permission for the record.
Declaration
Swift
var permissionWrite : PermissionWrite -
- The value (content) of the record.
Declaration
Swift
var value : String -
- UTC timestamp when the record was updated.
Declaration
Swift
var updatedAt : Int -
- The ID of the user who owns the record.
Declaration
Swift
var userID : String
View on GitHub
Install in Dash
StorageRecord Protocol Reference