Sign inGet started

Lists

To track an event using the lists package, you can use the corresponding method on the tracker instance. For example:

Example

Przykład kodu
val properties = ListsSubscribedProperties(
    listId = listId
)
bird.tracker.lists.subscribed(properties)

Methods

subscribed()

Przykład kodu
val properties = ListsSubscribedProperties(
    listId = listId
)
bird.tracker.lists.subscribed(properties)

ListsSubscribedProperties

PropertyType
list_id?String
source?String

unsubscribed()

Przykład kodu
val properties = ListsUnsubscribedProperties(
    listId = listId
)
bird.tracker.lists.unsubscribed(properties)

ListsUnsubscribedProperties

PropertyType
list_id?String
source?String