Skip to content

Instantly share code, notes, and snippets.

@bmorton
bmorton / ECOrder.m
Created February 14, 2012 19:22
RestKit Serializations
// ECOrder.m
static RKObjectMapping *objectMapping = nil;
static RKObjectMapping *serializationMapping = nil;
+ (RKObjectMapping*)objectMapping {
if (objectMapping == nil) {
objectMapping = [RKObjectMapping mappingForClass:self];
[objectMapping mapKeyPath:@"id" toAttribute:@"orderID"];
[objectMapping mapKeyPath:@"user_id" toAttribute:@"userID"];