// Fetching the unread message count directly
CastledNotifications.getInboxUnreadCount {
println("unread count is $it")
}
// Retrieving all inbox items
CastledNotifications.getInboxItems { inboxItems ->
println("InboxItems $inboxItems")
}
// Logging read inbox items
CastledNotifications.logInboxItemsRead(itemsList)
// Deleting a specific inbox item
CastledNotifications.deleteInboxItem(inboxItem)
// Logging a click on an inbox item
CastledNotifications.logInboxItemClicked(inboxItem, "btn-title")