RemoveFromPlaylistRequestDto

@Serializable
data class RemoveFromPlaylistRequestDto(val playlistItemIds: List<UUID>, val clearPlaylist: Boolean, val clearPlayingItem: Boolean)

Class RemoveFromPlaylistRequestDto.

Constructors

Link copied to clipboard
constructor(playlistItemIds: List<UUID>, clearPlaylist: Boolean, clearPlayingItem: Boolean)

Properties

Link copied to clipboard
@SerialName(value = "ClearPlayingItem")
val clearPlayingItem: Boolean

A value indicating whether the playing item should be removed as well. Used only when clearing the playlist.

Link copied to clipboard
@SerialName(value = "ClearPlaylist")
val clearPlaylist: Boolean

A value indicating whether the entire playlist should be cleared.

Link copied to clipboard
@SerialName(value = "PlaylistItemIds")
val playlistItemIds: List<UUID>

The playlist identifiers of the items. Ignored when clearing the playlist.