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

UpdatePlaylistUserDto

interface UpdatePlaylistUserDto {
    CanEdit?: null | boolean;
}

Properties

Properties

CanEdit?: null | boolean

Gets or sets a value indicating whether the user can edit the playlist.

UpdatePlaylistUserDto