attr.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package appevent
  2. // 广告主APP 转化事件类型
  3. const (
  4. // AppInstall 安装应用
  5. AppInstall = "app_install"
  6. // ViewContent 查看详情
  7. ViewContent = "view_content"
  8. // AchieveLevel 达到等级
  9. AchieveLevel = "achieve_level"
  10. // LaunchApp 打开应用
  11. LaunchApp = "launch_app"
  12. // Login 登录
  13. Login = "login"
  14. // Subscribe 订阅
  15. Subscribe = "subscribe"
  16. // Checkout 发起结账
  17. Checkout = "checkout"
  18. // Purchase 付费成功
  19. Purchase = "purchase"
  20. // SpendCredits 花费点数
  21. SpendCredits = "spend_credits"
  22. // AddToCart 加入购物车
  23. AddToCart = "add_to_cart"
  24. // AddToWishlist 加入心愿单
  25. AddToWishlist = "add_to_wishlist"
  26. // UnlockAchievement 解锁成就
  27. UnlockAchievement = "unlock_achievement"
  28. // StartTrial 开始试用
  29. StartTrial = "start_trial"
  30. // Rate 评价
  31. Rate = "rate"
  32. // PreCreditGranting 申请贷款
  33. PreCreditGranting = "pre_credit_granting"
  34. // CreditGranting 授信
  35. CreditGranting = "credit_granting"
  36. // Search 搜索
  37. Search = "search"
  38. // AddPaymentInfo 添加付款信息
  39. AddPaymentInfo = "add_payment_info"
  40. // CompleteTutorial 完成教程学习
  41. CompleteTutorial = "complete_tutorial"
  42. // Registration 注册
  43. Registration = "registration"
  44. // D2Retention 次留
  45. D2Retention = "d2_retention"
  46. // LoanIssued 放款
  47. LoanIssued = "loan_issued"
  48. // Contact 联系
  49. Contact = "contact"
  50. // Schedule 预约
  51. Schedule = "schedule"
  52. )