GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeRecommendationsType - Android


BlazeRecommendationsType is a sealed class that defines the types of recommendations that can be requested from the service.

The For you cold start parameter is coldStartLabels, available in Android SDK 1.20.3 or later.

ValuesAssociated valuesBehavior
ForYou
  • var anyLabelFilter: List<String> = emptyList(). This parameter is an array of strings, allowing you to filter the content received from a recommendation system. This parameter helps your app show the most relevant filtered recommendations to viewers.
  • var coldStartLabels: List<String> = emptyList(). Cold start labels for For you only. See Cold start for For you.
Represents the For you case: viewer-specific recommendations from the service.
Use this case to fetch recommendations tailored to the current viewer, based on their preferences and past interactions.
Trending
  • var anyLabelFilter: List<String> = emptyList(). This parameter is an array of strings, allowing you to filter the content received from a recommendation system. This parameter helps your app show the most relevant filtered recommendations to viewers.
Represents recommendations for content that is currently trending.
Use this case to fetch recommendations for content that is popular and trending across the Experiences platform.
This allows viewers to discover what is currently popular and engaging to a broader audience.

Did this page help you?