Update existing playlist dto. Fields set to null will not be updated and keep their current values.

UpdatePlaylistDto

interface UpdatePlaylistDto {
    Ids?: null | string[];
    IsPublic?: null | boolean;
    Name?: null | string;
    Users?: null | PlaylistUserPermissions[];
}

Properties

Ids?: null | string[]

Gets or sets item ids of the playlist.

UpdatePlaylistDto

IsPublic?: null | boolean

Gets or sets a value indicating whether the playlist is public.

UpdatePlaylistDto

Name?: null | string

Gets or sets the name of the new playlist.

UpdatePlaylistDto

Users?: null | PlaylistUserPermissions[]

Gets or sets the playlist users.

UpdatePlaylistDto