blob: eb6f6726a47cbe75240c7d2928cffa6b9ee9c2be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// OutlookUser undocumented
type OutlookUser struct {
// Entity is the base model of OutlookUser
Entity
// MasterCategories undocumented
MasterCategories []OutlookCategory `json:"masterCategories,omitempty"`
// TaskGroups undocumented
TaskGroups []OutlookTaskGroup `json:"taskGroups,omitempty"`
// TaskFolders undocumented
TaskFolders []OutlookTaskFolder `json:"taskFolders,omitempty"`
// Tasks undocumented
Tasks []OutlookTask `json:"tasks,omitempty"`
}
|