GetChannelsRequest

data class GetChannelsRequest(val userId: UUID? = null, val startIndex: Int? = null, val limit: Int? = null, val supportsLatestItems: Boolean? = null, val supportsMediaDeletion: Boolean? = null, val isFavorite: Boolean? = null)

Available channels.

Constructors

Link copied to clipboard
constructor(userId: UUID? = null, startIndex: Int? = null, limit: Int? = null, supportsLatestItems: Boolean? = null, supportsMediaDeletion: Boolean? = null, isFavorite: Boolean? = null)

Properties

Link copied to clipboard
val isFavorite: Boolean? = null

Optional. Filter by channels that are favorite.

Link copied to clipboard
val limit: Int? = null

Optional. The maximum number of records to return.

Link copied to clipboard
val startIndex: Int? = null

Optional. The record index to start at. All items with a lower index will be dropped from the results.

Link copied to clipboard

Optional. Filter by channels that support getting latest items.

Link copied to clipboard

Optional. Filter by channels that support media deletion.

Link copied to clipboard
val userId: UUID? = null

User Id to filter by. Use System.Guid.Empty to not filter by user.