You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/VimeoDotNet/Enums/VideoPrivacyEnum.cs
+13-8Lines changed: 13 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,42 +1,47 @@
1
-
namespaceVimeoDotNet.Enums
1
+
usingSystem;
2
+
3
+
namespaceVimeoDotNet.Enums
2
4
{
3
5
/// <summary>
4
6
/// View privacy
5
7
/// </summary>
6
8
publicenumVideoPrivacyEnum
7
9
{
8
10
/// <summary>
9
-
/// Nobody
11
+
/// Nobody - No one except the owner can access the video. This privacy setting appears as Private on the Vimeo front end.
10
12
/// </summary>
11
13
Nobody,
12
14
13
15
/// <summary>
14
-
/// Anybody
16
+
/// Anybody - Anyone can access the video. This privacy setting appears as Public on the Vimeo front end.
15
17
/// </summary>
16
18
Anybody,
17
19
18
20
/// <summary>
19
-
/// Only contacts
21
+
/// Contacts - Only those who follow the owner on Vimeo can access the video.
20
22
/// </summary>
23
+
[Obsolete]
21
24
Contacts,
22
25
23
26
/// <summary>
24
-
/// Only users
27
+
/// Users - Only Vimeo members can access the video.
25
28
/// </summary>
29
+
[Obsolete]
26
30
Users,
27
31
28
32
/// <summary>
29
-
/// Password
33
+
/// Password - Only those with the password can access the video.
30
34
/// </summary>
31
35
Password,
32
36
33
37
/// <summary>
34
-
/// Disable
38
+
/// Disable - The video is embeddable, but it's hidden on Vimeo and can't be played. This privacy setting appears as Hide from Vimeo on the Vimeo front end.
35
39
/// </summary>
40
+
[Obsolete]
36
41
Disable,
37
42
38
43
/// <summary>
39
-
/// Unlisted
44
+
/// Unlisted - Only those with the private link can access the video.
0 commit comments