Updated on 2026-08-14
This commit is contained in:
parent
21be815a03
commit
83c0ca6b63
7 changed files with 28 additions and 13 deletions
|
|
@ -7,9 +7,9 @@ sealed class PromoAnalyticsEvent(
|
|||
event: String,
|
||||
params: Map<String, String> = mapOf(),
|
||||
) : AnalyticsEvent(category = "Promotion", event = event, params = params) {
|
||||
class NoticePromotionBanner(
|
||||
source: AnalyticsParam.ScreensSources,
|
||||
program: Program,
|
||||
data class NoticePromotionBanner(
|
||||
private val source: AnalyticsParam.ScreensSources,
|
||||
private val program: Program,
|
||||
) : PromoAnalyticsEvent(
|
||||
event = "Notice - Promotion Banner",
|
||||
params = mapOf(
|
||||
|
|
@ -18,10 +18,10 @@ sealed class PromoAnalyticsEvent(
|
|||
),
|
||||
)
|
||||
|
||||
class PromotionBannerClicked(
|
||||
source: AnalyticsParam.ScreensSources,
|
||||
program: Program,
|
||||
action: BannerAction,
|
||||
data class PromotionBannerClicked(
|
||||
private val source: AnalyticsParam.ScreensSources,
|
||||
private val program: Program,
|
||||
private val action: BannerAction,
|
||||
) : PromoAnalyticsEvent(
|
||||
event = "Promo Banner Clicked",
|
||||
params = mapOf(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue