lpw
2023-07-20 d814a6bb51fd823746e511fcab25a1c834b4c764
commit | author | age
dcdc07 1 //
W 2 //  GHWSDKBindingResult.h
3 //  GHWSdkUI
4 //
5 //  Created by wuyx on 15/9/22.
6 //  Copyright (c) 2015年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 /*!
11  @discussion WABindingResult 该类为绑定结果
12  - - -
13  */
14 @interface WABindingResult : NSObject
15 /*!
16  @abstract 绑定平台userid
17  */
18 @property(copy,nonatomic)NSString *userId;
19 /*!
20  @abstract 绑定平台(Facebook,Apple)
21  */
22 @property(copy,nonatomic)NSString *platform;
23 /*!
24  @abstract 绑定平台accessToken
25  */
26 @property(copy,nonatomic)NSString *accessToken;
d814a6 27
L 28 /*!
29  @abstract 绑定wa时,是邮箱绑定还是email绑定
30  */
31 @property(copy,nonatomic)NSString *email;
32 @property(copy,nonatomic)NSString *mobile;
33
dcdc07 34 @end