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

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