namespace SpotifyAPI.Web { public class PlaylistChangeDetailsRequest : RequestParams { /// /// The new name for the playlist, for example "My New Playlist Title" /// /// [BodyParam("name")] public string? Name { get; set; } /// /// If true the playlist will be public, if false it will be private. /// /// [BodyParam("public")] public bool? Public { get; set; } /// /// If true , the playlist will become collaborative and other users will be able to modify the /// playlist in their Spotify client. Note: You can only set collaborative to true on non-public playlists. /// /// [BodyParam("collaborative")] public bool? Collaborative { get; set; } /// /// Value for playlist description as displayed in Spotify Clients and in the Web API. /// /// [BodyParam("description")] public string? Description { get; set; } } }