LPW
2022-01-05 035a6d2094def3c420ce5cdb0b4949ce1a0b47c7
frameworks/WASdkIntf.framework/Headers/WALoginResult.h
@@ -40,6 +40,12 @@
 @abstract 第三方平台token(当GUEST登录时为空,当Apple登录时,实际上是将extends转化为NSString)
 */
@property(copy,nonatomic)NSString *pToken;
/*!
@abstract 第三方平台的刷新refresh_token,如微信
*/
@property(copy,nonatomic)NSString *refresh_token;
/*!
 @abstract 当APPLE登录时有值,否则为空
 */
@@ -52,7 +58,8 @@
 @abstract 用户实名认证状态(未开启则不返回):
 * 0:已实名
 * 1:未实名
 * 2:已实名-未成年
 * 2:已实名-未成年(废弃)
   3:认证中
 */
@property NSInteger userRealNameStatus;
@@ -105,6 +112,16 @@
 */
@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