酷店

AlibcTrackParams.h 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * AlibcTrackParams.h
  3. *
  4. * 阿里百川电商
  5. * 项目名称:阿里巴巴电商 AlibcTradeBiz
  6. * 版本号:3.1.1.96
  7. * 发布时间:2017-03-24
  8. * 开发团队:阿里巴巴百川商业化团队
  9. * 阿里巴巴电商SDK答疑群号:1229144682(阿里旺旺)
  10. * Copyright (c) 2016-2019 阿里巴巴-移动事业群-百川. All rights reserved.
  11. */
  12. #import <Foundation/Foundation.h>
  13. #ifndef AlibcTrackParams_h
  14. #define AlibcTrackParams_h
  15. @interface AlibcTrackParams : NSObject
  16. /**必填: 供计算效果用,由推荐模块输出内容后,曝光埋点使用 */
  17. @property(nonatomic, strong) NSString *scm;
  18. /**必填: 供计算效果用,由推荐模块输出内容后,曝光埋点使用 */
  19. @property(nonatomic, strong) NSString *pvid;
  20. /**必填: 三方app的用户识别id,用于百川识别该用户行为并对推荐效果进行优化 */
  21. @property(nonatomic, strong) NSString *puid;
  22. /** 三方app页面名称*/
  23. @property(nonatomic, strong) NSString *page;
  24. /** 三方app控件名称 */
  25. @property(nonatomic, strong) NSString *label;
  26. /*
  27. * trackParam 参数key说明
  28. */
  29. #define track_scm @"scm"
  30. #define track_pvid @"pvid"
  31. #define track_isv_code @"isv_code"
  32. /**
  33. * 生成Dictionary
  34. */
  35. - (NSDictionary *)toDictionary;
  36. + (NSString *)ybhpssStringForDictionary:(NSDictionary *)params;
  37. @end
  38. #endif