@jellyfin/sdk
    Preparing search index...

    Interface UpdatePlaylistDto

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

    UpdatePlaylistDto

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

    Properties

    Ids?: string[] | null

    Gets or sets item ids of the playlist.

    UpdatePlaylistDto

    IsPublic?: boolean | null

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

    UpdatePlaylistDto

    Name?: string | null

    Gets or sets the name of the new playlist.

    UpdatePlaylistDto

    Users?: PlaylistUserPermissions[] | null

    Gets or sets the playlist users.

    UpdatePlaylistDto