Skip to content

Commit

Permalink
feat: expose effective_access in BoxSharedLink #843
Browse files Browse the repository at this point in the history
  • Loading branch information
kendomen authored Jul 28, 2022
1 parent 1460b49 commit d84ddd4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Box.V2/Models/BoxSharedLink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public class BoxSharedLink
public const string FieldAccess = "access";
public const string FieldPermissions = "permissions";
public const string FieldVanityName = "vanity_name";
public const string FieldEffectiveAccess = "effective_access";

/// <summary>
/// The Url of the shared link
Expand Down Expand Up @@ -81,5 +82,11 @@ public class BoxSharedLink
/// </summary>
[JsonProperty(PropertyName = FieldVanityName)]
public virtual string VanityName { get; private set; }

/// <summary>
/// The effective access of shared link
/// </summary>
[JsonProperty(PropertyName = FieldEffectiveAccess)]
public virtual string EffectiveAccess { get; private set; }
}
}

0 comments on commit d84ddd4

Please sign in to comment.