diff options
author | Qais Patankar <qaisjp@gmail.com> | 2020-03-15 22:43:46 +0000 |
---|---|---|
committer | Wim <wim@42.be> | 2020-03-22 00:02:48 +0100 |
commit | 76e5fe5a87d7e60919075f96eee599f3c6255a9f (patch) | |
tree | af3181ad6aadaea02069473a3718a827be888426 /vendor/github.com/yaegashi/msgraph.go/beta/ModelSite.go | |
parent | 802c80f40c709ba4967de317e40a8d6abe57f6be (diff) | |
download | matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.gz matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.bz2 matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.zip |
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelSite.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ModelSite.go | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSite.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSite.go new file mode 100644 index 00000000..b9e50fc3 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSite.go @@ -0,0 +1,107 @@ +// Code generated by msgraph-generate.go 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"` +} |