Skip to content

Commit

Permalink
Allow setting can_non_owners_invite flag on folders (#490)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Willer authored Jun 14, 2018
1 parent cf56f71 commit f306054
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Box.V2/Models/Request/BoxFolderRequest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Newtonsoft.Json;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -33,6 +33,11 @@ public class BoxFolderRequest : BoxItemRequest
[JsonConverter(typeof(StringEnumConverter))]
public BoxSyncStateType? SyncState { get; set; }

/// <summary>
/// Setting to determine if non-owners can invite others to collaborate on the folder.
/// </summary>
[JsonProperty(PropertyName = "can_non_owners_invite")]
public bool? CanNonOwnersInvite { get; set; }
}

}

0 comments on commit f306054

Please sign in to comment.