Updated on 2026-08-14
This commit is contained in:
parent
ef36fbf13e
commit
e4fc013173
10 changed files with 72 additions and 31 deletions
|
|
@ -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",
|
||||
),
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue