BufferRequestDto

@Serializable
data class BufferRequestDto(val when: DateTime, val positionTicks: Long, val isPlaying: Boolean, val playlistItemId: UUID)

Class BufferRequestDto.

Constructors

Link copied to clipboard
constructor(when: DateTime, positionTicks: Long, isPlaying: Boolean, playlistItemId: UUID)

Properties

Link copied to clipboard
@SerialName(value = "IsPlaying")
val isPlaying: Boolean

A value indicating whether the client playback is unpaused.

Link copied to clipboard
@SerialName(value = "PlaylistItemId")
val playlistItemId: UUID

The playlist item identifier of the playing item.

Link copied to clipboard
@SerialName(value = "PositionTicks")
val positionTicks: Long

The position ticks.

Link copied to clipboard
@SerialName(value = "When")
val when: DateTime

When the request has been made by the client.