Interface RemoveFromPlaylistRequestDto

Class RemoveFromPlaylistRequestDto.

RemoveFromPlaylistRequestDto

interface RemoveFromPlaylistRequestDto {
    ClearPlayingItem?: boolean;
    ClearPlaylist?: boolean;
    PlaylistItemIds?: string[];
}

Properties

ClearPlayingItem?: boolean

Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist.

RemoveFromPlaylistRequestDto

ClearPlaylist?: boolean

Gets or sets a value indicating whether the entire playlist should be cleared.

RemoveFromPlaylistRequestDto

PlaylistItemIds?: string[]

Gets or sets the playlist identifiers of the items. Ignored when clearing the playlist.

RemoveFromPlaylistRequestDto