How to properly map JSON properties to model properties in Realm.create
问题 I'm currently implementing an insert-or-update pattern with Realm by calling realm.create(T.self, value: object, update: true) . object is JSON returned from a rest call and it may contain some or all of the properties associated with that realm object. (In other words, I need to support partial updates.) In many of the JSON objects there is a key called description . Since I cannot have a Realm object subclass with a property called public dynamic var description I need to choose another