EventData

data class EventData(    val eventType: EventType,     val sessionId: String,     val matchId: String = "",     val matchIndex: Int? = null)

Defines the parameters for sending feedback events to the online search service.

Parameters

eventType

Feedback event type.

matchId

Match identifier for the selected or accepted search result.

sessionId

Search session identifier.

matchIndex

Index of the match in the list of matches.

Constructors

Link copied to clipboard
fun EventData(    eventType: EventType,     sessionId: String,     matchId: String = "",     matchIndex: Int? = null)

Properties

Link copied to clipboard
val eventType: EventType
Link copied to clipboard
val matchId: String
Link copied to clipboard
val matchIndex: Int? = null
Link copied to clipboard
val sessionId: String