Files
JJBB/Sdk/iOS/YuCheng/ThirdLibs/ShareSDK/ShareSDK.framework/Headers/SSDKUser.h

136 lines
2.0 KiB
C
Raw Normal View History

2024-08-23 15:49:34 +08:00
//
// SSDKUser.h
// ShareSDK
//
// Created by 冯 鸿杰 on 15/2/6.
// Copyright (c) 2015年 掌淘科技. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "SSDKTypeDefine.h"
#import <ShareSDK/IMOBFSocialUser.h>
#import <MOBFoundation/MOBFDataModel.h>
@class SSDKCredential;
/**
*
*/
typedef NS_ENUM(NSUInteger, SSDKGender)
{
/**
*
*/
SSDKGenderMale = 0,
/**
*
*/
SSDKGenderFemale = 1,
/**
*
*/
SSDKGenderUnknown = 2,
};
/**
*
*/
@interface SSDKUser : MOBFDataModel <IMOBFSocialUser>
/**
*
*/
@property (nonatomic) NSInteger platformType;
/**
* nil则表示尚未授权
*/
@property (nonatomic, retain) SSDKCredential *credential;
/**
*
*/
@property (nonatomic, copy) NSString *uid;
/**
*
*/
@property (nonatomic, copy) NSString *nickname;
/**
*
*/
@property (nonatomic, copy) NSString *icon;
/**
*
*/
@property (nonatomic) NSInteger gender;
/**
*
*/
@property (nonatomic, copy) NSString *url;
/**
*
*/
@property (nonatomic, copy) NSString *aboutMe;
/**
*
*/
@property (nonatomic) NSInteger verifyType;
/**
*
*/
@property (nonatomic, copy) NSString *verifyReason;
/**
*
*/
@property (nonatomic, strong) NSDate *birthday;
/**
*
*/
@property (nonatomic) NSInteger followerCount;
/**
*
*/
@property (nonatomic) NSInteger friendCount;
/**
*
*/
@property (nonatomic) NSInteger shareCount;
/**
*
*/
@property (nonatomic) NSTimeInterval regAt;
/**
*
*/
@property (nonatomic) NSInteger level;
/**
*
*/
@property (nonatomic, retain) NSArray *educations;
/**
*
*/
@property (nonatomic, retain) NSArray *works;
/**
*
*/
@property (nonatomic, retain) NSDictionary *rawData;
@end