Updated on 2026-08-14

This commit is contained in:
Tangem 2024-07-19 15:53:19 +05:00
parent ef36fbf13e
commit e4fc013173
10 changed files with 72 additions and 31 deletions

View file

@ -29,4 +29,13 @@ sealed class PushNotificationAnalyticEvents(
data object ButtonCancel : PushNotificationAnalyticEvents(
event = "Button - Cancel",
)
data class PermissionStatus(
val isAllowed: Boolean,
) : PushNotificationAnalyticEvents(
event = "Permission Status",
params = mapOf(
AnalyticsParam.STATE to if (isAllowed) "Allow" else "Cancel",
),
)
}