[][src]Function aspotify::endpoints::playlists::change_playlist

pub async fn change_playlist<'_, '_, '_, '_>(
    token: &'_ AccessToken,
    id: &'_ str,
    name: Option<&'_ str>,
    public: Option<bool>,
    collaborative: Option<bool>,
    description: Option<&'_ str>
) -> Result<(), EndpointError<Error>>

Change a playlist's details.

Requires playist-modify-public if the playlist is public, and playlist-modify-private if it is private. Each parameter, when Some, changes an attribute of the playlist. A playlist cannot be both public and collaborative.

Reference.