ClientMeta
public struct ClientMeta: Codable
A type to hold metadata information created by a client
-
An identifier for the writer of the document
Declaration
Swift
public let writerId: UUID
-
An identifier for the user of the document
Declaration
Swift
public let userId: UUID
-
The kind of data this document represents
Declaration
Swift
public let type: String
-
A user-defined, key-value store of metadata associated with the document that remains as plaintext
Declaration
Swift
public let plain: PlainMeta?
-
Holds info about a file associated with this record, if any
Declaration
Swift
public let fileMeta: FileMeta?