
commonMain.com.algolia.client.model.analytics.GetClickThroughRateResponse.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.*
/**
* GetClickThroughRateResponse
*
* @param rate [Click-through rate (CTR)](https://www.algolia.com/doc/guides/search-analytics/concepts/metrics/#click-through-rate).
* @param clickCount Number of click events.
* @param trackedSearchCount Number of tracked searches. This is the number of search requests where the `clickAnalytics` parameter is `true`.
* @param dates Click-through rate events.
*/
@Serializable
public data class GetClickThroughRateResponse(
/** [Click-through rate (CTR)](https://www.algolia.com/doc/guides/search-analytics/concepts/metrics/#click-through-rate). */
@SerialName(value = "rate") val rate: Double,
/** Number of click events. */
@SerialName(value = "clickCount") val clickCount: Int,
/** Number of tracked searches. This is the number of search requests where the `clickAnalytics` parameter is `true`. */
@SerialName(value = "trackedSearchCount") val trackedSearchCount: Int,
/** Click-through rate events. */
@SerialName(value = "dates") val dates: List,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy