GetSuggestionsRequest

@Serializable
data class GetSuggestionsRequest(val userId: UUID? = null, val mediaType: Collection<MediaType>? = null, val type: Collection<BaseItemKind>? = null, val startIndex: Int? = null, val limit: Int? = null, val enableTotalRecordCount: Boolean? = false)

Suggestions.

Constructors

Link copied to clipboard
constructor(userId: UUID? = null, mediaType: Collection<MediaType>? = null, type: Collection<BaseItemKind>? = null, startIndex: Int? = null, limit: Int? = null, enableTotalRecordCount: Boolean? = false)

Properties

Link copied to clipboard
@SerialName(value = "enableTotalRecordCount")
val enableTotalRecordCount: Boolean?

Whether to enable the total record count.

Link copied to clipboard
@SerialName(value = "limit")
val limit: Int?

Optional. The limit.

Link copied to clipboard
@SerialName(value = "mediaType")
val mediaType: Collection<MediaType>?

The media types.

Link copied to clipboard
@SerialName(value = "startIndex")
val startIndex: Int?

Optional. The start index.

Link copied to clipboard
@SerialName(value = "type")
val type: Collection<BaseItemKind>?

The type.

Link copied to clipboard
@SerialName(value = "userId")
val userId: UUID?

The user id.