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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Notebook undocumented
     6  type Notebook struct {
     7  	// OnenoteEntityHierarchyModel is the base model of Notebook
     8  	OnenoteEntityHierarchyModel
     9  	// IsDefault undocumented
    10  	IsDefault *bool `json:"isDefault,omitempty"`
    11  	// UserRole undocumented
    12  	UserRole *OnenoteUserRole `json:"userRole,omitempty"`
    13  	// IsShared undocumented
    14  	IsShared *bool `json:"isShared,omitempty"`
    15  	// SectionsURL undocumented
    16  	SectionsURL *string `json:"sectionsUrl,omitempty"`
    17  	// SectionGroupsURL undocumented
    18  	SectionGroupsURL *string `json:"sectionGroupsUrl,omitempty"`
    19  	// Links undocumented
    20  	Links *NotebookLinks `json:"links,omitempty"`
    21  	// Sections undocumented
    22  	Sections []OnenoteSection `json:"sections,omitempty"`
    23  	// SectionGroups undocumented
    24  	SectionGroups []SectionGroup `json:"sectionGroups,omitempty"`
    25  }
    26  
    27  // NotebookLinks undocumented
    28  type NotebookLinks struct {
    29  	// Object is the base model of NotebookLinks
    30  	Object
    31  	// OneNoteClientURL undocumented
    32  	OneNoteClientURL *ExternalLink `json:"oneNoteClientUrl,omitempty"`
    33  	// OneNoteWebURL undocumented
    34  	OneNoteWebURL *ExternalLink `json:"oneNoteWebUrl,omitempty"`
    35  }