blob: c6188504b7b6c8d7795bfff79e704ce0568ee078 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// OutlookTaskFolder undocumented
type OutlookTaskFolder struct {
// Entity is the base model of OutlookTaskFolder
Entity
// ChangeKey undocumented
ChangeKey *string `json:"changeKey,omitempty"`
// Name undocumented
Name *string `json:"name,omitempty"`
// IsDefaultFolder undocumented
IsDefaultFolder *bool `json:"isDefaultFolder,omitempty"`
// ParentGroupKey undocumented
ParentGroupKey *UUID `json:"parentGroupKey,omitempty"`
// Tasks undocumented
Tasks []OutlookTask `json:"tasks,omitempty"`
// SingleValueExtendedProperties undocumented
SingleValueExtendedProperties []SingleValueLegacyExtendedProperty `json:"singleValueExtendedProperties,omitempty"`
// MultiValueExtendedProperties undocumented
MultiValueExtendedProperties []MultiValueLegacyExtendedProperty `json:"multiValueExtendedProperties,omitempty"`
}
|