LPW
2022-01-05 035a6d2094def3c420ce5cdb0b4949ce1a0b47c7
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;
b11815 29 @property(nonatomic) NSInteger enableBindAccount; // 绑定:  0-关闭, 1-打开  2-强制绑定(国内)
45b3f1 30 @property(nonatomic) NSInteger enableUnBindAccount; // 解绑:   0-关闭,1-打开
3a96ff 31 @property(nonatomic,copy)NSString* privacyUrl; // 隐私协议url
45b3f1 32 @property(nonatomic,copy)NSString* privacyUpdateTime; // 用户协议更新时间
3a96ff 33 @property(nonatomic,copy)NSString* userPolicyUrl; // 用户协议
L 34 @property(nonatomic,copy)NSString* childPrivacyUrl; // 儿童隐私协议地址
35
36
37
56b891 38 @property(nonatomic)NSInteger userCenterStatus; // 用户中心状态 0-关闭,1-打开
319c91 39 @property(nonatomic)NSInteger isRechargeCenterPay; // 是否开启充值中心支付:0-关闭,1-打开,2-仅安卓打开,3-仅IOS打开
L 40 @property(nonatomic,copy)NSString* rechargeCenterIcon; // 充值中心的支付图片URL
55db1c 41 @property(nonatomic)NSInteger isOpenKefu; //  是否开启客服  0  关闭 1 启动机器人客服聊天界面   2 启动人工客服聊天界面   3 启动运营界面  4 展示全部FAQ菜单 5 展示全部FAQ菜单(无机器人客服)
L 42 @property (nonatomic, copy) NSDictionary *paymentTip; //付款信息提示  (complete:提示语字段的key)
43 @property(nonatomic)NSInteger logEventControl; //  事件日志开关  0  关闭 1 全部打开  2 仅android打开   3 仅ios打开  
b11815 44 @property(nonatomic)NSInteger loginRna;     // 0 - 关闭,登录后不弹实名认证。   1 - 开启并强制   2开启不强制
L 45 @property(nonatomic)NSInteger paymentRna;   // 0 - 关闭,下单前不弹出实名认证。  1 - 开启并强制   2开启不强制
46
47 @property(nonatomic)NSInteger autoGuestLogin;       // 游客自动登录开关 0 - 开启,  1 - 关闭
48 @property(nonatomic)NSInteger guestLoginBindAlert;   // 游客登录绑定提醒 0 - 关闭,  1 - 开启
28ea02 49
45b3f1 50
d0b2df 51 @end