lpw
2024-06-12 e0f1c26b35a0522c5a5d946d33c8f7e907bcc1f5
commit | author | age
d1f6ab 1 //
H 2 //  WASDKAccount.h
3 //  WASDKUI
4 //
5 //  Created by wuyx on 15/11/30.
6 //  Copyright © 2015年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 /*!
11  @discussion WAAccount 该类为账户类
12  - - -
13  */
14 @interface WAAccount : NSObject
15 /*!
16  @abstract 第三方平台openId
17  */
18 @property(nonatomic,copy)NSString* pUserId;//第三方平台openId
b11815 19
d1f6ab 20 /*!
H 21  @abstract 绑定平台标识 FACEBOOK、APPLE、WINGA
22  */
23 @property(nonatomic,copy)NSString* platform;
b11815 24
L 25 @property (nonatomic, strong) NSString *mobile;//wa平台才有此字段
26
e0f1c2 27 @property (nonatomic,strong) NSString * email;//WA平台且已绑定邮箱时返回 20230703  绑定帐号列表 V4(增加邮箱返回)
L 28
b11815 29
d1f6ab 30 +(WAAccount*)parserWithDict:(NSDictionary*)dict;
H 31 +(NSArray*)parserWithArray:(NSArray*)arr;
32 @end