This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 642
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2674 from KoenZomers/HideGroup
Added SetUnifiedGroupVisibility to allow toggling the visibility of a unified group
- Loading branch information
Showing
3 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace OfficeDevPnP.Core.Framework.Graph.Model | ||
{ | ||
/// <summary> | ||
/// Defines a Microsoft Graph Group | ||
/// </summary> | ||
public class Group | ||
{ | ||
/// <summary> | ||
/// True if the group is not displayed in certain parts of the Outlook UI: the Address Book, address lists for selecting message recipients, and the Browse Groups dialog for searching groups; otherwise, false. Default value is false. | ||
/// </summary> | ||
[JsonProperty("hideFromAddressLists", NullValueHandling = NullValueHandling.Ignore)] | ||
public bool? HideFromAddressLists { get; set; } | ||
|
||
/// <summary> | ||
/// True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web; otherwise, false. Default value is false. | ||
/// </summary> | ||
[JsonProperty("hideFromOutlookClients", NullValueHandling = NullValueHandling.Ignore)] | ||
public bool? HideFromOutlookClients { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters