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

PropertyType

list_id?

String

source?

String

unsubscribed()

val properties = ListsUnsubscribedProperties(
    listId = listId
)
bird.tracker.lists.unsubscribed(properties)

ListsUnsubscribedProperties

PropertyType

list_id?

String

source?

String

Last updated