github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelRecent.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // RecentNotebook undocumented
     8  type RecentNotebook struct {
     9  	// Object is the base model of RecentNotebook
    10  	Object
    11  	// DisplayName undocumented
    12  	DisplayName *string `json:"displayName,omitempty"`
    13  	// LastAccessedTime undocumented
    14  	LastAccessedTime *time.Time `json:"lastAccessedTime,omitempty"`
    15  	// Links undocumented
    16  	Links *RecentNotebookLinks `json:"links,omitempty"`
    17  	// SourceService undocumented
    18  	SourceService *OnenoteSourceService `json:"sourceService,omitempty"`
    19  }
    20  
    21  // RecentNotebookLinks undocumented
    22  type RecentNotebookLinks struct {
    23  	// Object is the base model of RecentNotebookLinks
    24  	Object
    25  	// OneNoteClientURL undocumented
    26  	OneNoteClientURL *ExternalLink `json:"oneNoteClientUrl,omitempty"`
    27  	// OneNoteWebURL undocumented
    28  	OneNoteWebURL *ExternalLink `json:"oneNoteWebUrl,omitempty"`
    29  }