forked from jellyfin/jellyfin-plugin-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotificationType.cs
More file actions
128 lines (105 loc) · 2.72 KB
/
NotificationType.cs
File metadata and controls
128 lines (105 loc) · 2.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
namespace Jellyfin.Plugin.Webhook.Destinations
{
/// <summary>
/// The type of notification.
/// </summary>
public enum NotificationType
{
/// <summary>
/// No notification type.
/// </summary>
None = 0,
/// <summary>
/// Item added notification.
/// </summary>
ItemAdded = 1,
/// <summary>
/// Generic notification.
/// </summary>
Generic = 2,
/// <summary>
/// Playback start notification.
/// </summary>
PlaybackStart = 3,
/// <summary>
/// Playback progress notification.
/// </summary>
PlaybackProgress = 4,
/// <summary>
/// Playback stop notification.
/// </summary>
PlaybackStop = 5,
/// <summary>
/// Subtitle download failure.
/// </summary>
SubtitleDownloadFailure = 6,
/// <summary>
/// Authentication failure.
/// </summary>
AuthenticationFailure = 7,
/// <summary>
/// Authentication success.
/// </summary>
AuthenticationSuccess = 8,
/// <summary>
/// Session started.
/// </summary>
SessionStart = 9,
/// <summary>
/// Server pending restart.
/// </summary>
PendingRestart = 10,
/// <summary>
/// Task completed.
/// </summary>
TaskCompleted = 11,
/// <summary>
/// Plugin installation cancelled.
/// </summary>
PluginInstallationCancelled = 12,
/// <summary>
/// Plugin installation failed.
/// </summary>
PluginInstallationFailed = 13,
/// <summary>
/// Plugin installed.
/// </summary>
PluginInstalled = 14,
/// <summary>
/// Plugin installing.
/// </summary>
PluginInstalling = 15,
/// <summary>
/// Plugin uninstalled.
/// </summary>
PluginUninstalled = 16,
/// <summary>
/// Plugin updated.
/// </summary>
PluginUpdated = 17,
/// <summary>
/// User created.
/// </summary>
UserCreated = 18,
/// <summary>
/// User created.
/// </summary>
UserDeleted = 19,
/// <summary>
/// User locked out.
/// </summary>
UserLockedOut = 20,
/// <summary>
/// User password changed.
/// </summary>
UserPasswordChanged = 21,
/// <summary>
/// User updated.
/// </summary>
UserUpdated = 22,
/// <summary>
/// User data saved.
/// </summary>
UserDataSaved = 23
}
}