blob: c279ea99ed1e2dae042f71d545471a82093d34e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// OutlookTaskGroup undocumented
type OutlookTaskGroup struct {
// Entity is the base model of OutlookTaskGroup
Entity
// ChangeKey undocumented
ChangeKey *string `json:"changeKey,omitempty"`
// IsDefaultGroup undocumented
IsDefaultGroup *bool `json:"isDefaultGroup,omitempty"`
// Name undocumented
Name *string `json:"name,omitempty"`
// GroupKey undocumented
GroupKey *UUID `json:"groupKey,omitempty"`
// TaskFolders undocumented
TaskFolders []OutlookTaskFolder `json:"taskFolders,omitempty"`
}
|