commonMain.com.algolia.instantsearch.insights.HitsAfterSearchTrackable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of instantsearch-insights Show documentation
Show all versions of instantsearch-insights Show documentation
InstantSearch Android is a library providing widgets and helpers to help you build the best instant-search experience on Android with Algolia. It is built on top of Algolia's Kotlin API Client to provide you a high-level solution to quickly build various search interfaces.
package com.algolia.instantsearch.insights
import com.algolia.search.model.ObjectID
import com.algolia.search.model.QueryID
import com.algolia.search.model.insights.EventName
public interface HitsAfterSearchTrackable {
/**
* Tracks a View event, unrelated to a specific search query.
*
* @param eventName the event's name, **must not be empty**.
* @param objectIDs the viewed object(s)' `objectID`.
* @param timestamp the time at which the view happened. Defaults to current time.
*/
public fun viewedObjectIDs(
eventName: EventName,
objectIDs: List,
timestamp: Long? = null,
)
/**
* Tracks a click event, unrelated to a specific search query.
*
* @param eventName the event's name, **must not be empty**.
* @param objectIDs the clicked object(s)' `objectID`.
* @param timestamp the time at which the click happened.
*/
public fun clickedObjectIDs(
eventName: EventName,
objectIDs: List,
timestamp: Long? = null,
)
/**
* Tracks a Conversion event, unrelated to a specific search query.
*
* @param eventName the event's name, **must not be empty**.
* @param objectIDs the object(s)' `objectID`.
* @param timestamp the time at which the conversion happened.
*/
public fun convertedObjectIDs(
eventName: EventName,
objectIDs: List,
timestamp: Long? = null,
)
/**
* Tracks a Click event after a search has been done.
*
* @param eventName the event's name, **must not be empty**.
* @param queryID the related [query's identifier][https://www.algolia.com/doc/guides/insights-and-analytics/click-analytics/?language=php#identifying-the-query-result-position].
* @param objectIDs the object(s)' `objectID`.
* @param positions the clicked object(s)' position(s).
* @param timestamp the time at which the click happened.
*/
public fun clickedObjectIDsAfterSearch(
eventName: EventName,
queryID: QueryID,
objectIDs: List,
positions: List,
timestamp: Long? = null,
)
/**
* Tracks a Conversion event after a search has been done.
*
* @param eventName the event's name, **must not be empty**.
* @param queryID the related [query's identifier][https://www.algolia.com/doc/guides/insights-and-analytics/click-analytics/?language=php#identifying-the-query-result-position].
* @param objectIDs the object(s)' `objectID`.
* @param timestamp the time at which the conversion happened.
*/
public fun convertedObjectIDsAfterSearch(
eventName: EventName,
queryID: QueryID,
objectIDs: List,
timestamp: Long? = null,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy