Skip to content

Commit 937452d

Browse files
cboyce428mfilippov
authored andcommitted
1 parent dc5ab71 commit 937452d

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

src/VimeoDotNet/Enums/VideoPrivacyEnum.cs

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,47 @@
1-
namespace VimeoDotNet.Enums
1+
using System;
2+
3+
namespace VimeoDotNet.Enums
24
{
35
/// <summary>
46
/// View privacy
57
/// </summary>
68
public enum VideoPrivacyEnum
79
{
810
/// <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.
1012
/// </summary>
1113
Nobody,
1214

1315
/// <summary>
14-
/// Anybody
16+
/// Anybody - Anyone can access the video. This privacy setting appears as Public on the Vimeo front end.
1517
/// </summary>
1618
Anybody,
1719

1820
/// <summary>
19-
/// Only contacts
21+
/// Contacts - Only those who follow the owner on Vimeo can access the video.
2022
/// </summary>
23+
[Obsolete]
2124
Contacts,
2225

2326
/// <summary>
24-
/// Only users
27+
/// Users - Only Vimeo members can access the video.
2528
/// </summary>
29+
[Obsolete]
2630
Users,
2731

2832
/// <summary>
29-
/// Password
33+
/// Password - Only those with the password can access the video.
3034
/// </summary>
3135
Password,
3236

3337
/// <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.
3539
/// </summary>
40+
[Obsolete]
3641
Disable,
3742

3843
/// <summary>
39-
/// Unlisted
44+
/// Unlisted - Only those with the private link can access the video.
4045
/// </summary>
4146
Unlisted
4247
}

src/VimeoDotNet/Models/Video.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class Video
6060
public string Link { get; set; }
6161

6262
/// <summary>
63-
/// player_embed_url
63+
/// The video's player embed URL
6464
/// </summary>
6565
[PublicAPI]
6666
[JsonProperty(PropertyName = "player_embed_url")]

0 commit comments

Comments
 (0)