commit | author | age
|
d0b2df
|
1 |
// |
H |
2 |
// WAParamConfigObj.h |
|
3 |
// WASDKUI |
|
4 |
// |
|
5 |
// Created by wuyx on 15/11/25. |
|
6 |
// Copyright © 2015年 GHW-T-01. All rights reserved. |
|
7 |
// |
|
8 |
|
|
9 |
#import <Foundation/Foundation.h> |
|
10 |
|
|
11 |
@interface WAParamConfigObj : NSObject<NSCoding,NSCopying> |
|
12 |
@property(nonatomic)BOOL enableExtend; |
|
13 |
@property(nonatomic)BOOL enableHotPatch; |
|
14 |
@property(nonatomic,copy)NSString* afadAppKey; |
|
15 |
@property(nonatomic,copy)NSString* fbSecretKey; |
|
16 |
@property(nonatomic,copy)NSString* rewardType; |
|
17 |
@property(nonatomic)float reorderLimitTime; |
|
18 |
@property(nonatomic) NSInteger paymentReportTime; |
|
19 |
@property(nonatomic) float heartbeatIntervalTime; |
|
20 |
@property(nonatomic)int eventCacheNumberLimit; |
|
21 |
@property(nonatomic)int eventCacheTimeLimit; |
|
22 |
@property(nonatomic,copy)NSString* eventTypeImmediate; |
|
23 |
@property(nonatomic,strong)NSNumber* enableNewAccount; |
|
24 |
@property(nonatomic,strong)NSNumber* enableChangeAccount; |
|
25 |
@property(nonatomic,strong)NSNumber* isTestDevice; |
47f8fd
|
26 |
@property(nonatomic,copy)NSString* userAgreementUrl; |
45b3f1
|
27 |
@property(nonatomic,strong)NSNumber* uploadPurchaseLog; |
H |
28 |
@property(nonatomic) NSInteger adVideoCacheCount; |
|
29 |
@property(nonatomic) NSInteger enableBindAccount; // 绑定: 0-关闭, 1-打开 |
|
30 |
@property(nonatomic) NSInteger enableUnBindAccount; // 解绑: 0-关闭,1-打开 |
|
31 |
@property(nonatomic,copy)NSString* privacyUrl; // 用户协议url |
|
32 |
@property(nonatomic,copy)NSString* privacyUpdateTime; // 用户协议更新时间 |
|
33 |
|
d0b2df
|
34 |
@end |