mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-10 22:49:21 +08:00
32 lines
509 B
Objective-C
32 lines
509 B
Objective-C
//
|
|
// RKTUser.m
|
|
// RKTwitter
|
|
//
|
|
// Created by Blake Watters on 9/5/10.
|
|
// Copyright 2010 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKTUser.h"
|
|
|
|
@implementation RKTUser
|
|
|
|
@dynamic userID;
|
|
@dynamic name;
|
|
@dynamic screenName;
|
|
|
|
#pragma mark RKObjectMappable methods
|
|
|
|
+ (NSDictionary*)elementToPropertyMappings {
|
|
return [NSDictionary dictionaryWithKeysAndObjects:
|
|
@"id", @"userID",
|
|
@"screen_name", @"screenName",
|
|
@"name", @"name",
|
|
nil];
|
|
}
|
|
|
|
+ (NSString*)primaryKey {
|
|
return @"userID";
|
|
}
|
|
|
|
@end
|