Spotify.NET/SpotifyAPI.Web/Enums/Scope.cs

68 lines
1.4 KiB
C#
Raw Normal View History

using System;
namespace SpotifyAPI.Web.Enums
{
[Flags]
public enum Scope
{
[String("")]
None = 1,
[String("playlist-modify-public")]
PlaylistModifyPublic = 2,
[String("playlist-modify-private")]
PlaylistModifyPrivate = 4,
[String("playlist-read-private")]
PlaylistReadPrivate = 8,
[String("streaming")]
Streaming = 16,
[String("user-read-private")]
UserReadPrivate = 32,
[String("user-read-email")]
UserReadEmail = 64,
[String("user-library-read")]
UserLibraryRead = 128,
[String("user-library-modify")]
UserLibraryModify = 256,
[String("user-follow-modify")]
UserFollowModify = 512,
[String("user-follow-read")]
UserFollowRead = 1024,
[String("user-read-birthdate")]
UserReadBirthdate = 2048,
2016-04-01 13:08:06 +01:00
[String("user-top-read")]
UserTopRead = 4096,
2016-09-19 20:32:15 +01:00
[String("playlist-read-collaborative")]
PlaylistReadCollaborative = 8192,
2017-03-02 21:28:55 +00:00
[String("user-read-recently-played")]
UserReadRecentlyPlayed = 16384,
2017-05-29 22:17:15 +01:00
[String("user-read-playback-state")]
UserReadPlaybackState = 32768,
2017-05-29 22:17:15 +01:00
[String("user-modify-playback-state")]
UserModifyPlaybackState = 65536,
[String("user-read-currently-playing")]
UserReadCurrentlyPlaying = 131072,
[String("app-remote-control")]
AppRemoteControl = 262144,
[String("ugc-image-upload")]
UgcImageUpload = 524288
}
}