forked from JohnnyCrazy/SpotifyAPI-NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScope.cs
More file actions
67 lines (46 loc) · 1.36 KB
/
Scope.cs
File metadata and controls
67 lines (46 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
using System;
namespace SpotifyAPI.Web.Enums;
[Flags]
public enum Scope
{
[String("")]
None = 0,
[String("playlist-modify-public")]
PlaylistModifyPublic = 1,
[String("playlist-modify-private")]
PlaylistModifyPrivate = 2,
[String("playlist-read-private")]
PlaylistReadPrivate = 4,
[String("streaming")]
Streaming = 8,
[String("user-read-private")]
UserReadPrivate = 16,
[String("user-read-email")]
UserReadEmail = 32,
[String("user-library-read")]
UserLibraryRead = 64,
[String("user-library-modify")]
UserLibraryModify = 128,
[String("user-follow-modify")]
UserFollowModify = 256,
[String("user-follow-read")]
UserFollowRead = 512,
[String("user-read-birthdate")]
UserReadBirthdate = 1024,
[String("user-top-read")]
UserTopRead = 2048,
[String("playlist-read-collaborative")]
PlaylistReadCollaborative = 4096,
[String("user-read-recently-played")]
UserReadRecentlyPlayed = 8192,
[String("user-read-playback-state")]
UserReadPlaybackState = 16384,
[String("user-modify-playback-state")]
UserModifyPlaybackState = 32768,
[String("user-read-currently-playing")]
UserReadCurrentlyPlaying = 65536,
[String("app-remote-control")]
AppRemoteControl = 131072,
[String("ugc-image-upload")]
UgcImageUpload = 262144
}