1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// Site undocumented
type Site struct {
// BaseItem is the base model of Site
BaseItem
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// Root undocumented
Root *Root `json:"root,omitempty"`
// SharepointIDs undocumented
SharepointIDs *SharepointIDs `json:"sharepointIds,omitempty"`
// SiteCollection undocumented
SiteCollection *SiteCollection `json:"siteCollection,omitempty"`
// Analytics undocumented
Analytics *ItemAnalytics `json:"analytics,omitempty"`
// Columns undocumented
Columns []ColumnDefinition `json:"columns,omitempty"`
// ContentTypes undocumented
ContentTypes []ContentType `json:"contentTypes,omitempty"`
// Drive undocumented
Drive *Drive `json:"drive,omitempty"`
// Drives undocumented
Drives []Drive `json:"drives,omitempty"`
// Items undocumented
Items []BaseItem `json:"items,omitempty"`
// Lists undocumented
Lists []List `json:"lists,omitempty"`
// Pages undocumented
Pages []SitePage `json:"pages,omitempty"`
// Sites undocumented
Sites []Site `json:"sites,omitempty"`
// Onenote undocumented
Onenote *Onenote `json:"onenote,omitempty"`
}
// SiteActivitySummary undocumented
type SiteActivitySummary struct {
// Entity is the base model of SiteActivitySummary
Entity
// ReportRefreshDate undocumented
ReportRefreshDate *Date `json:"reportRefreshDate,omitempty"`
// ViewedOrEdited undocumented
ViewedOrEdited *int `json:"viewedOrEdited,omitempty"`
// Synced undocumented
Synced *int `json:"synced,omitempty"`
// SharedInternally undocumented
SharedInternally *int `json:"sharedInternally,omitempty"`
// SharedExternally undocumented
SharedExternally *int `json:"sharedExternally,omitempty"`
// ReportDate undocumented
ReportDate *Date `json:"reportDate,omitempty"`
// ReportPeriod undocumented
ReportPeriod *string `json:"reportPeriod,omitempty"`
}
// SiteCollection undocumented
type SiteCollection struct {
// Object is the base model of SiteCollection
Object
// DataLocationCode undocumented
DataLocationCode *string `json:"dataLocationCode,omitempty"`
// Hostname undocumented
Hostname *string `json:"hostname,omitempty"`
// Root undocumented
Root *Root `json:"root,omitempty"`
}
// SitePage undocumented
type SitePage struct {
// BaseItem is the base model of SitePage
BaseItem
// Title undocumented
Title *string `json:"title,omitempty"`
// ContentType undocumented
ContentType *ContentTypeInfo `json:"contentType,omitempty"`
// PageLayoutType undocumented
PageLayoutType *string `json:"pageLayoutType,omitempty"`
// WebParts undocumented
WebParts []WebPart `json:"webParts,omitempty"`
// PublishingState undocumented
PublishingState *PublicationFacet `json:"publishingState,omitempty"`
}
// SitePageData undocumented
type SitePageData struct {
// Object is the base model of SitePageData
Object
}
// SiteUsageStorage undocumented
type SiteUsageStorage struct {
// Entity is the base model of SiteUsageStorage
Entity
// ReportRefreshDate undocumented
ReportRefreshDate *Date `json:"reportRefreshDate,omitempty"`
// SiteType undocumented
SiteType *string `json:"siteType,omitempty"`
// StorageUsedInBytes undocumented
StorageUsedInBytes *int `json:"storageUsedInBytes,omitempty"`
// ReportDate undocumented
ReportDate *Date `json:"reportDate,omitempty"`
// ReportPeriod undocumented
ReportPeriod *string `json:"reportPeriod,omitempty"`
}
|