From d84ddd48aac489ecdd1d9dc740a7672cb064b0ca Mon Sep 17 00:00:00 2001 From: Ken Domen Date: Thu, 28 Jul 2022 05:27:49 -0700 Subject: [PATCH] feat: expose `effective_access` in `BoxSharedLink` #843 --- Box.V2/Models/BoxSharedLink.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Box.V2/Models/BoxSharedLink.cs b/Box.V2/Models/BoxSharedLink.cs index 6c6e68f7d..70fc8e4f8 100644 --- a/Box.V2/Models/BoxSharedLink.cs +++ b/Box.V2/Models/BoxSharedLink.cs @@ -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"; /// /// The Url of the shared link @@ -81,5 +82,11 @@ public class BoxSharedLink /// [JsonProperty(PropertyName = FieldVanityName)] public virtual string VanityName { get; private set; } + + /// + /// The effective access of shared link + /// + [JsonProperty(PropertyName = FieldEffectiveAccess)] + public virtual string EffectiveAccess { get; private set; } } }