| | |
| | | @abstract 第三方平台token(当GUEST登录时为空,当Apple登录时,实际上是将extends转化为NSString) |
| | | */ |
| | | @property(copy,nonatomic)NSString *pToken; |
| | | |
| | | /*! |
| | | @abstract 第三方平台的刷新refresh_token,如微信 |
| | | */ |
| | | @property(copy,nonatomic)NSString *refresh_token; |
| | | |
| | | /*! |
| | | @abstract 当APPLE登录时有值,否则为空 |
| | | */ |
| | |
| | | @abstract 用户实名认证状态(未开启则不返回): |
| | | * 0:已实名 |
| | | * 1:未实名 |
| | | * 2:已实名-未成年 |
| | | * 2:已实名-未成年(废弃) |
| | | 3:认证中 |
| | | */ |
| | | @property NSInteger userRealNameStatus; |
| | | |
| | |
| | | */ |
| | | @property BOOL isBindUser; |
| | | |
| | | /**! sdk 内部使用 |
| | | @abstract 游客账号绑标示(仅游客登录返回 0-未绑定过账户 1 绑定过1个或者多个账号) |
| | | */ |
| | | @property NSInteger isBindAccount; |
| | | |
| | | |
| | | // cp 使用 |
| | | @property int isGuestAccount; // 0 不是游客账号 1是游客账号 |
| | | |
| | | |
| | | -(id)initWithPUserId:(NSString*)userId pToken:(NSString*)token platform:(NSString*)platform; |
| | | +(id)loginResultWithPUserId:(NSString*)userId pToken:(NSString*)token platform:(NSString*)platform; |
| | | @end |