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
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// OneDriveActivityUserDetail undocumented
type OneDriveActivityUserDetail struct {
// Entity is the base model of OneDriveActivityUserDetail
Entity
// ReportRefreshDate undocumented
ReportRefreshDate *Date `json:"reportRefreshDate,omitempty"`
// UserPrincipalName undocumented
UserPrincipalName *string `json:"userPrincipalName,omitempty"`
// IsDeleted undocumented
IsDeleted *bool `json:"isDeleted,omitempty"`
// DeletedDate undocumented
DeletedDate *Date `json:"deletedDate,omitempty"`
// LastActivityDate undocumented
LastActivityDate *Date `json:"lastActivityDate,omitempty"`
// ViewedOrEditedFileCount undocumented
ViewedOrEditedFileCount *int `json:"viewedOrEditedFileCount,omitempty"`
// SyncedFileCount undocumented
SyncedFileCount *int `json:"syncedFileCount,omitempty"`
// SharedInternallyFileCount undocumented
SharedInternallyFileCount *int `json:"sharedInternallyFileCount,omitempty"`
// SharedExternallyFileCount undocumented
SharedExternallyFileCount *int `json:"sharedExternallyFileCount,omitempty"`
// AssignedProducts undocumented
AssignedProducts []string `json:"assignedProducts,omitempty"`
// ReportPeriod undocumented
ReportPeriod *string `json:"reportPeriod,omitempty"`
}
// OneDriveUsageAccountCounts undocumented
type OneDriveUsageAccountCounts struct {
// Entity is the base model of OneDriveUsageAccountCounts
Entity
// ReportRefreshDate undocumented
ReportRefreshDate *Date `json:"reportRefreshDate,omitempty"`
// SiteType undocumented
SiteType *string `json:"siteType,omitempty"`
// Total undocumented
Total *int `json:"total,omitempty"`
// Active undocumented
Active *int `json:"active,omitempty"`
// ReportDate undocumented
ReportDate *Date `json:"reportDate,omitempty"`
// ReportPeriod undocumented
ReportPeriod *string `json:"reportPeriod,omitempty"`
}
// OneDriveUsageAccountDetail undocumented
type OneDriveUsageAccountDetail struct {
// Entity is the base model of OneDriveUsageAccountDetail
Entity
// ReportRefreshDate undocumented
ReportRefreshDate *Date `json:"reportRefreshDate,omitempty"`
// SiteURL undocumented
SiteURL *string `json:"siteUrl,omitempty"`
// OwnerDisplayName undocumented
OwnerDisplayName *string `json:"ownerDisplayName,omitempty"`
// OwnerPrincipalName undocumented
OwnerPrincipalName *string `json:"ownerPrincipalName,omitempty"`
// IsDeleted undocumented
IsDeleted *bool `json:"isDeleted,omitempty"`
// LastActivityDate undocumented
LastActivityDate *Date `json:"lastActivityDate,omitempty"`
// FileCount undocumented
FileCount *int `json:"fileCount,omitempty"`
// ActiveFileCount undocumented
ActiveFileCount *int `json:"activeFileCount,omitempty"`
// StorageUsedInBytes undocumented
StorageUsedInBytes *int `json:"storageUsedInBytes,omitempty"`
// StorageAllocatedInBytes undocumented
StorageAllocatedInBytes *int `json:"storageAllocatedInBytes,omitempty"`
// ReportPeriod undocumented
ReportPeriod *string `json:"reportPeriod,omitempty"`
}
// OneDriveUsageFileCounts undocumented
type OneDriveUsageFileCounts struct {
// Entity is the base model of OneDriveUsageFileCounts
Entity
// ReportRefreshDate undocumented
ReportRefreshDate *Date `json:"reportRefreshDate,omitempty"`
// SiteType undocumented
SiteType *string `json:"siteType,omitempty"`
// Total undocumented
Total *int `json:"total,omitempty"`
// Active undocumented
Active *int `json:"active,omitempty"`
// ReportDate undocumented
ReportDate *Date `json:"reportDate,omitempty"`
// ReportPeriod undocumented
ReportPeriod *string `json:"reportPeriod,omitempty"`
}
|