37 lines
1.1 KiB
Objective-C
37 lines
1.1 KiB
Objective-C
//
|
|
// PNUser.h
|
|
// Pods
|
|
//
|
|
// Created by Giuseppe Nucifora on 08/01/16.
|
|
//
|
|
//
|
|
|
|
#import <PNObject/PNObject.h>
|
|
#import "PNAddress.h"
|
|
|
|
@interface PNUser : PNObject <PNObjectSubclassing>
|
|
|
|
@property (strong, nonatomic) NSString *userId;
|
|
@property (strong, nonatomic) NSString *firstName;
|
|
@property (strong, nonatomic) NSString *lastName;
|
|
@property (nonatomic, strong) NSString *profileImage;
|
|
@property (nonatomic, strong) NSString *sex;
|
|
@property (nonatomic, strong) NSDate *birthDate;
|
|
@property (nonatomic, strong) NSString *phone;
|
|
@property (nonatomic) BOOL hasAcceptedPrivacy;
|
|
@property (nonatomic) BOOL hasAcceptedNewsletter;
|
|
@property (nonatomic) BOOL hasVerifiedEmail;
|
|
@property (nonatomic, strong) NSDate *emailVerifiedDate;
|
|
@property (nonatomic, strong) NSString *email;
|
|
@property (strong, nonatomic) NSString *username;
|
|
@property (nonatomic) BOOL publicProfile;
|
|
@property (nonatomic) NSInteger loginCount;
|
|
@property (strong, nonatomic) NSDate *createdAt;
|
|
@property (nonatomic, strong) NSString *facebookId;
|
|
@property (nonatomic, strong) NSString *facebookAccessToken;
|
|
@property (nonatomic, strong) PNAddress *address;
|
|
|
|
|
|
|
|
@end
|