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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // CopyNotebookModel undocumented
     8  type CopyNotebookModel struct {
     9  	// Object is the base model of CopyNotebookModel
    10  	Object
    11  	// IsDefault undocumented
    12  	IsDefault *bool `json:"isDefault,omitempty"`
    13  	// UserRole undocumented
    14  	UserRole *OnenoteUserRole `json:"userRole,omitempty"`
    15  	// IsShared undocumented
    16  	IsShared *bool `json:"isShared,omitempty"`
    17  	// SectionsURL undocumented
    18  	SectionsURL *string `json:"sectionsUrl,omitempty"`
    19  	// SectionGroupsURL undocumented
    20  	SectionGroupsURL *string `json:"sectionGroupsUrl,omitempty"`
    21  	// Links undocumented
    22  	Links *NotebookLinks `json:"links,omitempty"`
    23  	// Name undocumented
    24  	Name *string `json:"name,omitempty"`
    25  	// CreatedBy undocumented
    26  	CreatedBy *string `json:"createdBy,omitempty"`
    27  	// CreatedByIdentity undocumented
    28  	CreatedByIdentity *IdentitySet `json:"createdByIdentity,omitempty"`
    29  	// LastModifiedBy undocumented
    30  	LastModifiedBy *string `json:"lastModifiedBy,omitempty"`
    31  	// LastModifiedByIdentity undocumented
    32  	LastModifiedByIdentity *IdentitySet `json:"lastModifiedByIdentity,omitempty"`
    33  	// LastModifiedTime undocumented
    34  	LastModifiedTime *time.Time `json:"lastModifiedTime,omitempty"`
    35  	// ID undocumented
    36  	ID *string `json:"id,omitempty"`
    37  	// Self undocumented
    38  	Self *string `json:"self,omitempty"`
    39  	// CreatedTime undocumented
    40  	CreatedTime *time.Time `json:"createdTime,omitempty"`
    41  }