hank
2017-06-06 47f8fd0e9f78a2c43129229516558e8e515678df
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;
d0b2df 27 @end