blob: ebf4b23ca1e00d89194c8266a7d92a22e4cac7ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// Office365ActivationsUserDetail undocumented
type Office365ActivationsUserDetail struct {
// Entity is the base model of Office365ActivationsUserDetail
Entity
// ReportRefreshDate undocumented
ReportRefreshDate *time.Time `json:"reportRefreshDate,omitempty"`
// UserPrincipalName undocumented
UserPrincipalName *string `json:"userPrincipalName,omitempty"`
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// UserActivationCounts undocumented
UserActivationCounts []UserActivationCounts `json:"userActivationCounts,omitempty"`
}
|