package appevent // 广告主APP 转化事件类型 const ( // AppInstall 安装应用 AppInstall = "app_install" // ViewContent 查看详情 ViewContent = "view_content" // AchieveLevel 达到等级 AchieveLevel = "achieve_level" // LaunchApp 打开应用 LaunchApp = "launch_app" // Login 登录 Login = "login" // Subscribe 订阅 Subscribe = "subscribe" // Checkout 发起结账 Checkout = "checkout" // Purchase 付费成功 Purchase = "purchase" // SpendCredits 花费点数 SpendCredits = "spend_credits" // AddToCart 加入购物车 AddToCart = "add_to_cart" // AddToWishlist 加入心愿单 AddToWishlist = "add_to_wishlist" // UnlockAchievement 解锁成就 UnlockAchievement = "unlock_achievement" // StartTrial 开始试用 StartTrial = "start_trial" // Rate 评价 Rate = "rate" // PreCreditGranting 申请贷款 PreCreditGranting = "pre_credit_granting" // CreditGranting 授信 CreditGranting = "credit_granting" // Search 搜索 Search = "search" // AddPaymentInfo 添加付款信息 AddPaymentInfo = "add_payment_info" // CompleteTutorial 完成教程学习 CompleteTutorial = "complete_tutorial" // Registration 注册 Registration = "registration" // D2Retention 次留 D2Retention = "d2_retention" // LoanIssued 放款 LoanIssued = "loan_issued" // Contact 联系 Contact = "contact" // Schedule 预约 Schedule = "schedule" )