blob: 675a3a0075f71a97271101b4650e967c047ed7d0 (
plain) (
blame)
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// SecureScore undocumented
type SecureScore struct {
// Entity is the base model of SecureScore
Entity
// ActiveUserCount undocumented
ActiveUserCount *int `json:"activeUserCount,omitempty"`
// AverageComparativeScores undocumented
AverageComparativeScores []AverageComparativeScore `json:"averageComparativeScores,omitempty"`
// AzureTenantID undocumented
AzureTenantID *string `json:"azureTenantId,omitempty"`
// ControlScores undocumented
ControlScores []ControlScore `json:"controlScores,omitempty"`
// CreatedDateTime undocumented
CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
// CurrentScore undocumented
CurrentScore *float64 `json:"currentScore,omitempty"`
// EnabledServices undocumented
EnabledServices []string `json:"enabledServices,omitempty"`
// LicensedUserCount undocumented
LicensedUserCount *int `json:"licensedUserCount,omitempty"`
// MaxScore undocumented
MaxScore *float64 `json:"maxScore,omitempty"`
// VendorInformation undocumented
VendorInformation *SecurityVendorInformation `json:"vendorInformation,omitempty"`
}
|