Record struct representing a CloudKit record.
Fields
record_name: Unique record name (ID)record_type: The record type/schema namefields: Map of field names to CloudKit field valuesrecord_change_tag: Version tag for conflict detectioncreated: Creation timestamp and user infomodified: Modification timestamp and user info
Summary
Functions
Build a field value map for CloudKit records.
Decode a CloudKit record from the API response.
Types
Functions
Build a field value map for CloudKit records.
Field Types
STRINGINT64DOUBLEBOOLEANTIMESTAMPASSETLOCATIONREFERENCESTRING_LISTINT64_LISTDOUBLE_LIST
Examples
CloudKit.Record.field_value("Hello", "STRING")
CloudKit.Record.field_value(42, "INT64")
CloudKit.Record.field_value(3.14, "DOUBLE")
CloudKit.Record.field_value(true, "BOOLEAN")
Decode a CloudKit record from the API response.