blob: c9f6498f2eaa365fd84ced16b4e1731a28cf4062 (
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
24
25
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// Folder undocumented
type Folder struct {
// Object is the base model of Folder
Object
// ChildCount undocumented
ChildCount *int `json:"childCount,omitempty"`
// View undocumented
View *FolderView `json:"view,omitempty"`
}
// FolderView undocumented
type FolderView struct {
// Object is the base model of FolderView
Object
// SortBy undocumented
SortBy *string `json:"sortBy,omitempty"`
// SortOrder undocumented
SortOrder *string `json:"sortOrder,omitempty"`
// ViewType undocumented
ViewType *string `json:"viewType,omitempty"`
}
|