NTP-30476 | Divyesh | add biller name in postpaid analytics event (#16114)

This commit is contained in:
Divyesh Shinde
2025-05-12 14:46:37 +05:30
committed by GitHub
parent 8a36f2c9d0
commit 37ec2268ea
2 changed files with 3 additions and 0 deletions

View File

@@ -1561,6 +1561,7 @@ class NaviBbpsAnalytics private constructor() {
}
fun errorOnPostpaidBillDetailsFetch(
billerName: String,
error: String,
sessionAttribute: Map<String, String>,
source: String,
@@ -1570,6 +1571,7 @@ class NaviBbpsAnalytics private constructor() {
eventName = "NaviBBPS_ContactList_ErrorDetailsOnBillFetch",
eventValues =
mapOf(
"billerName" to billerName,
"error" to error,
NAVI_BBPS_SOURCE to source,
NAVI_BBPS_INITIAL_SOURCE to initialSource,

View File

@@ -440,6 +440,7 @@ constructor(
val error = getError(response = billDetailsResponse)
naviBbpsAnalytics.errorOnPostpaidBillDetailsFetch(
billerName = billerItemEntity.billerName,
error = error.code,
sessionAttribute = getNaviBbpsSessionAttributes(),
source = NaviBbpsScreen.NAVI_BBPS_CONTACT_LIST_SCREEN.name,