KBAManagedObjectPropertyMapping
@protocol KBAManagedObjectPropertyMapping <NSObject>Protocol for objects that map JSON keys to managed object property names.
- 
                  
                  Return the entity property name for the JSON key. For example, first_name->firstName.DeclarationObjective-C - (nonnull NSString *)entityPropertyKeyForJSONKey:(nonnull NSString *)JSONKey entityName: (nonnull NSString *)entityName;ParametersJSONKeyThe JSON key entityNameThe entity name Return ValueThe entity property name 
- 
                  
                  Return the JSON key for the entity property name. For example, firstName->first_name.DeclarationObjective-C - (nonnull NSString *) JSONKeyForEntityPropertyKey:(nonnull NSString *)propertyKey entityName:(nonnull NSString *)entityName;ParameterspropertyKeyThe JSON key entityNameThe entity name Return ValueThe JSON key 
- 
                  
                  Return the entity property value for property key and entity name in context. DeclarationObjective-C - (nonnull id) entityPropertyValueForEntityPropertyKey:(nonnull NSString *)propertyKey value:(nullable id)value entityName:(nonnull NSString *)entityName context:(nonnull NSManagedObjectContext *) context;ParameterspropertyKeyThe entity property key valueThe JSON value entityNameThe entity name contextThe managed object context Return ValueThe entity property value 
- 
                  
                  Return the JSON value for the entity property key, value, and entity name in context. DeclarationObjective-C - (nonnull id)JSONValueForEntityPropertyKey:(nonnull NSString *)propertyKey value:(nullable id)value entityName:(nonnull NSString *)entityName context:(nonnull NSManagedObjectContext *) context;ParameterspropertyKeyThe entity property key valueThe entity property value entityNameThe entity name contextThe managed object context Return ValueThe JSON value 
 KBAManagedObjectPropertyMapping Protocol Reference
      KBAManagedObjectPropertyMapping Protocol Reference