You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -316,6 +318,8 @@ export interface Group extends DirectoryObject {
316
318
/** The owners of the group. The owners are a set of non-admin users who are allowed to modify this object. Limited to 10 owners. HTTP Methods: GET (supported for all groups), POST (supported for Office 365 groups, security groups and mail-enabled security groups), DELETE (supported for Office 365 groups and security groups). Nullable. */
317
319
owners?: DirectoryObject[]
318
320
321
+
settings?: GroupSetting[]
322
+
319
323
/** The collection of open extensions defined for the group. Read-only. Nullable. */
320
324
extensions?: Extension[]
321
325
@@ -337,6 +341,7 @@ export interface Group extends DirectoryObject {
337
341
/** The group's profile photo */
338
342
photo?: ProfilePhoto
339
343
344
+
/** The profile photos owned by the group. Read-only. Nullable. */
340
345
photos?: ProfilePhoto[]
341
346
342
347
/** The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. */
@@ -353,13 +358,24 @@ export interface Group extends DirectoryObject {
353
358
/** The list of SharePoint sites in this group. Access the default site with /sites/root. */
354
359
sites?: Site[]
355
360
361
+
/** Entry-point to Planner resource that might exist for a Unified Group. */
/** Identifies the version of the calendar object. Every time the calendar is changed, ChangeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only. */
403
419
changeKey?: string
404
420
421
+
canShare?: boolean
422
+
423
+
canViewPrivateItems?: boolean
424
+
425
+
canEdit?: boolean
426
+
427
+
owner?: EmailAddress
428
+
405
429
/** The events in the calendar. Navigation property. Read-only. */
406
430
events?: Event[]
407
431
@@ -647,6 +671,8 @@ export interface Site extends BaseItem {
647
671
/** The collection of the sub-sites under this site. */
648
672
sites?: Site[]
649
673
674
+
onenote?: Onenote
675
+
650
676
}
651
677
652
678
exportinterfacePlannerGroupextendsEntity{
@@ -775,6 +801,7 @@ export interface User extends DirectoryObject {
775
801
/** The city in which the user is located. Supports $filter. */
776
802
city?: string
777
803
804
+
/** The company name which the user is associated. */
778
805
companyName?: string
779
806
780
807
/** The country/region in which the user is located; for example, “US” or “UK”. Supports $filter. */
/** Indicates whether the message has attachments. */
999
+
/** Indicates whether the message has attachments. This property doesn't include inline attachments, so if a message contains only inline attachments, this property is false. To verify the existence of inline attachments, parse the body property to look for a src attribute, such as <IMG src="cid:image001.jpg@01D26CD8.6C05F070">. */
973
1000
hasAttachments?: boolean
974
1001
975
1002
/** The message ID in the format specified by RFC2822. */
0 commit comments