-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Exchange Online properties of Microsoft 365 Groups (#3958)
* Added implementation * Added PR reference * Fixing documentation build issue --------- Co-authored-by: Gautam Sheth <[email protected]>
- Loading branch information
1 parent
7409316
commit d576b53
Showing
10 changed files
with
151 additions
and
22 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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,9 @@ | |
|
||
namespace PnP.PowerShell.Commands.Model | ||
{ | ||
/// <summary> | ||
/// Properties of one Microsoft 365 Group | ||
/// </summary> | ||
public class Microsoft365Group | ||
{ | ||
[JsonPropertyName("[email protected]")] | ||
|
@@ -53,6 +56,9 @@ public string GroupId | |
public string SiteUrl { get; set; } | ||
public string[] GroupTypes { get; set; } | ||
public IEnumerable<Microsoft365User> Owners { get; set; } | ||
public bool? AllowExternalSenders { get; set; } | ||
public bool? IsSubscribedByMail { get; set; } | ||
public bool? AutoSubscribeNewMembers { get; set; } | ||
|
||
public List<AssignedLabels> AssignedLabels { 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