blob: c5f5e350915163c58a15fb1501286209e0bdcd20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// ApplicationSignInDetailedSummary undocumented
type ApplicationSignInDetailedSummary struct {
// Entity is the base model of ApplicationSignInDetailedSummary
Entity
// AppID undocumented
AppID *string `json:"appId,omitempty"`
// AppDisplayName undocumented
AppDisplayName *string `json:"appDisplayName,omitempty"`
// Status undocumented
Status *SignInStatus `json:"status,omitempty"`
// SignInCount undocumented
SignInCount *int `json:"signInCount,omitempty"`
// AggregatedEventDateTime undocumented
AggregatedEventDateTime *time.Time `json:"aggregatedEventDateTime,omitempty"`
}
|