Skip to content

Commit

Permalink
chore(deps): dependencies 2025-01-06 [skip-bc] (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4299

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Algolia Bot <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Clément Vannicatte <[email protected]>
  • Loading branch information
4 people committed Jan 6, 2025
1 parent c74f7de commit a61fcd7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import kotlinx.serialization.*
import kotlinx.serialization.json.*

/**
* EventScoring
* EventsScoring
*
* @param score Event score.
* @param eventName Event name.
* @param eventType
*/
@Serializable
public data class EventScoring(
public data class EventsScoring(

/** Event score. */
@SerialName(value = "score") val score: Int,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import kotlinx.serialization.*
import kotlinx.serialization.json.*

/**
* FacetScoring
* FacetsScoring
*
* @param score Event score.
* @param facetName Facet attribute name.
*/
@Serializable
public data class FacetScoring(
public data class FacetsScoring(

/** Event score. */
@SerialName(value = "score") val score: Int,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ import kotlinx.serialization.json.*
/**
* PersonalizationStrategyParams
*
* @param eventScoring Scores associated with each event. The higher the scores, the higher the impact of those events on the personalization of search results.
* @param facetScoring Scores associated with each facet. The higher the scores, the higher the impact of those events on the personalization of search results.
* @param eventsScoring Scores associated with each event. The higher the scores, the higher the impact of those events on the personalization of search results.
* @param facetsScoring Scores associated with each facet. The higher the scores, the higher the impact of those events on the personalization of search results.
* @param personalizationImpact Impact of personalization on the search results. If set to 0, personalization has no impact on the search results.
*/
@Serializable
public data class PersonalizationStrategyParams(

/** Scores associated with each event. The higher the scores, the higher the impact of those events on the personalization of search results. */
@SerialName(value = "eventScoring") val eventScoring: List<EventScoring>,
@SerialName(value = "eventsScoring") val eventsScoring: List<EventsScoring>,

/** Scores associated with each facet. The higher the scores, the higher the impact of those events on the personalization of search results. */
@SerialName(value = "facetScoring") val facetScoring: List<FacetScoring>,
@SerialName(value = "facetsScoring") val facetsScoring: List<FacetsScoring>,

/** Impact of personalization on the search results. If set to 0, personalization has no impact on the search results. */
@SerialName(value = "personalizationImpact") val personalizationImpact: Int,
Expand Down

0 comments on commit a61fcd7

Please sign in to comment.