File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
src/main/scala/algoliasearch/personalization Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ package algoliasearch.personalization
21
21
22
22
import algoliasearch .personalization .EventType ._
23
23
24
- /** EventScoring
24
+ /** EventsScoring
25
25
*
26
26
* @param score
27
27
* Event score.
28
28
* @param eventName
29
29
* Event name.
30
30
*/
31
- case class EventScoring (
31
+ case class EventsScoring (
32
32
score : Int ,
33
33
eventName : String ,
34
34
eventType : EventType
Original file line number Diff line number Diff line change 19
19
*/
20
20
package algoliasearch .personalization
21
21
22
- /** FacetScoring
22
+ /** FacetsScoring
23
23
*
24
24
* @param score
25
25
* Event score.
26
26
* @param facetName
27
27
* Facet attribute name.
28
28
*/
29
- case class FacetScoring (
29
+ case class FacetsScoring (
30
30
score : Int ,
31
31
facetName : String
32
32
)
Original file line number Diff line number Diff line change @@ -21,17 +21,17 @@ package algoliasearch.personalization
21
21
22
22
/** PersonalizationStrategyParams
23
23
*
24
- * @param eventScoring
24
+ * @param eventsScoring
25
25
* Scores associated with each event. The higher the scores, the higher the impact of those events on the
26
26
* personalization of search results.
27
- * @param facetScoring
27
+ * @param facetsScoring
28
28
* Scores associated with each facet. The higher the scores, the higher the impact of those events on the
29
29
* personalization of search results.
30
30
* @param personalizationImpact
31
31
* Impact of personalization on the search results. If set to 0, personalization has no impact on the search results.
32
32
*/
33
33
case class PersonalizationStrategyParams (
34
- eventScoring : Seq [EventScoring ],
35
- facetScoring : Seq [FacetScoring ],
34
+ eventsScoring : Seq [EventsScoring ],
35
+ facetsScoring : Seq [FacetsScoring ],
36
36
personalizationImpact : Int
37
37
)
You can’t perform that action at this time.
0 commit comments