github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelFolder.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Folder undocumented
     6  type Folder struct {
     7  	// Object is the base model of Folder
     8  	Object
     9  	// ChildCount undocumented
    10  	ChildCount *int `json:"childCount,omitempty"`
    11  	// View undocumented
    12  	View *FolderView `json:"view,omitempty"`
    13  }
    14  
    15  // FolderView undocumented
    16  type FolderView struct {
    17  	// Object is the base model of FolderView
    18  	Object
    19  	// SortBy undocumented
    20  	SortBy *string `json:"sortBy,omitempty"`
    21  	// SortOrder undocumented
    22  	SortOrder *string `json:"sortOrder,omitempty"`
    23  	// ViewType undocumented
    24  	ViewType *string `json:"viewType,omitempty"`
    25  }