GetMovieRecommendationsRequest

data class GetMovieRecommendationsRequest(val userId: UUID? = null, val parentId: UUID? = null, val fields: Collection<ItemFields>? = null, val categoryLimit: Int? = 5, val itemLimit: Int? = 8)

Movie recommendations.

Constructors

Link copied to clipboard
constructor(userId: UUID? = null, parentId: UUID? = null, fields: Collection<ItemFields>? = null, categoryLimit: Int? = 5, itemLimit: Int? = 8)

Properties

Link copied to clipboard
val categoryLimit: Int? = 5

The max number of categories to return.

Link copied to clipboard

Optional. The fields to return.

Link copied to clipboard
val itemLimit: Int? = 8

The max number of items to return per category.

Link copied to clipboard
val parentId: UUID? = null

Specify this to localize the search to a specific item or folder. Omit to use the root.

Link copied to clipboard
val userId: UUID? = null

Optional. Filter by user id, and attach user data.