2020-05-04 22:02:53 +01:00
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
|
{
|
|
|
|
|
public class FollowPlaylistRequest : RequestParams
|
|
|
|
|
{
|
2020-05-28 15:30:17 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Defaults to true. If true the playlist will be included in user’s public playlists,
|
|
|
|
|
/// if false it will remain private. To be able to follow playlists privately,
|
|
|
|
|
/// the user must have granted the playlist-modify-private scope.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value></value>
|
2020-05-04 22:02:53 +01:00
|
|
|
|
[BodyParam("public")]
|
2020-05-05 14:30:00 +01:00
|
|
|
|
public bool? Public { get; set; }
|
2020-05-04 22:02:53 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-25 17:00:38 +01:00
|
|
|
|
|