blob: 8b62e0d9a313a667d67837fbbd463f80f4c080d4 (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// AzureADUserFeatureUsage undocumented
type AzureADUserFeatureUsage struct {
// Entity is the base model of AzureADUserFeatureUsage
Entity
// LastUpdatedDateTime undocumented
LastUpdatedDateTime *time.Time `json:"lastUpdatedDateTime,omitempty"`
// UserID undocumented
UserID *string `json:"userId,omitempty"`
// UserDisplayName undocumented
UserDisplayName *string `json:"userDisplayName,omitempty"`
// UserPrincipalName undocumented
UserPrincipalName *string `json:"userPrincipalName,omitempty"`
// LicenseRecommended undocumented
LicenseRecommended *AzureADLicenseType `json:"licenseRecommended,omitempty"`
// LicenseAssigned undocumented
LicenseAssigned *AzureADLicenseType `json:"licenseAssigned,omitempty"`
// FeatureUsageDetails undocumented
FeatureUsageDetails []FeatureUsageDetail `json:"featureUsageDetails,omitempty"`
}
|