All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.algolia.client.model.analytics.GetAverageClickPositionResponse.kt Maven / Gradle / Ivy

/** Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. */
package com.algolia.client.model.analytics

import kotlinx.serialization.*
import kotlinx.serialization.json.*

/**
 * GetAverageClickPositionResponse
 *
 * @param average Average position of a clicked search result in the list of search results. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
 * @param clickCount Number of clicks associated with this search.
 * @param dates Daily average click positions.
 */
@Serializable
public data class GetAverageClickPositionResponse(

  /** Average position of a clicked search result in the list of search results. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.  */
  @SerialName(value = "average") val average: Double,

  /** Number of clicks associated with this search. */
  @SerialName(value = "clickCount") val clickCount: Int,

  /** Daily average click positions. */
  @SerialName(value = "dates") val dates: List,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy