Lists
To track an event using the lists package, you can use the corresponding method on the tracker instance. For example:
Example
val properties = ListsSubscribedProperties(
listId = listId
)
bird.tracker.lists.subscribed(properties)
Methods
subscribed()
val properties = ListsSubscribedProperties(
listId = listId
)
bird.tracker.lists.subscribed(properties)
ListsSubscribedProperties
Property
Type
list_id?
String
source?
String
unsubscribed()
val properties = ListsUnsubscribedProperties(
listId = listId
)
bird.tracker.lists.unsubscribed(properties)
ListsUnsubscribedProperties
Property
Type
list_id?
String
source?
String
Last updated
Was this helpful?