Skip to content

Commit

Permalink
Summary Text
Browse files Browse the repository at this point in the history
  • Loading branch information
cboyce428 authored and mfilippov committed Apr 15, 2023
1 parent dc5ab71 commit 937452d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
21 changes: 13 additions & 8 deletions src/VimeoDotNet/Enums/VideoPrivacyEnum.cs
Original file line number Diff line number Diff line change
@@ -1,42 +1,47 @@
namespace VimeoDotNet.Enums
using System;

namespace VimeoDotNet.Enums
{
/// <summary>
/// View privacy
/// </summary>
public enum VideoPrivacyEnum
{
/// <summary>
/// Nobody
/// Nobody - No one except the owner can access the video. This privacy setting appears as Private on the Vimeo front end.
/// </summary>
Nobody,

/// <summary>
/// Anybody
/// Anybody - Anyone can access the video. This privacy setting appears as Public on the Vimeo front end.
/// </summary>
Anybody,

/// <summary>
/// Only contacts
/// Contacts - Only those who follow the owner on Vimeo can access the video.
/// </summary>
[Obsolete]
Contacts,

/// <summary>
/// Only users
/// Users - Only Vimeo members can access the video.
/// </summary>
[Obsolete]
Users,

/// <summary>
/// Password
/// Password - Only those with the password can access the video.
/// </summary>
Password,

/// <summary>
/// Disable
/// 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.
/// </summary>
[Obsolete]
Disable,

/// <summary>
/// Unlisted
/// Unlisted - Only those with the private link can access the video.
/// </summary>
Unlisted
}
Expand Down
2 changes: 1 addition & 1 deletion src/VimeoDotNet/Models/Video.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class Video
public string Link { get; set; }

/// <summary>
/// player_embed_url
/// The video's player embed URL
/// </summary>
[PublicAPI]
[JsonProperty(PropertyName = "player_embed_url")]
Expand Down

0 comments on commit 937452d

Please sign in to comment.