Blame view

Pods/mob_sharesdk/ShareSDK/ShareSDK.framework/Headers/SSDKUser.h 2 KB
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
  //
  //  SSDKUser.h
  //  ShareSDK
  //
  //  Created by  鸿杰 on 15/2/6.
  //  Copyright (c) 2015 掌淘科技. All rights reserved.
  //
  
  #import <Foundation/Foundation.h>
  
  
  @class SSDKCredential;
  
  /**
   *  性别
   */
  typedef NS_ENUM(NSUInteger, SSDKGender)
  {
      /**
       *  
       */
      SSDKGenderMale      = 0,
      /**
       *  
       */
      SSDKGenderFemale    = 1,
      /**
       *  未知
       */
      SSDKGenderUnknown   = 2,
  };
  
  /**
   *  用户信息
   */
  @interface SSDKUser : SSDKDataModel
  
  /**
   *  平台类型
   */
  @property (nonatomic) SSDKPlatformType platformType;
  
  /**
   *  授权凭证, nil则表示尚未授权
   */
  @property (nonatomic, strong) SSDKCredential *credential;
  
  /**
   *  用户标识
   */
  @property (nonatomic, copy) NSString *uid;
  
  /**
   *  昵称
   */
  @property (nonatomic, copy) NSString *nickname;
  
  /**
   *  头像
   */
  @property (nonatomic, copy) NSString *icon;
  
  /**
   *  大头像
   */
  @property (nonatomic, copy) NSString *bigIcon;
  
  /**
   *  性别 -0 -1 未知-2
   */
  @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 (strong, nonatomic) NSArray *tags;
  
  /**
   *  原始数据
   */
  @property (strong, nonatomic) NSDictionary *rawData;
  
  @end