blob: 28c8d030774b12e6fc1592278476357181655aad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// LoggedOnUser undocumented
type LoggedOnUser struct {
// Object is the base model of LoggedOnUser
Object
// UserID User id
UserID *string `json:"userId,omitempty"`
// LastLogOnDateTime Date time when user logs on
LastLogOnDateTime *time.Time `json:"lastLogOnDateTime,omitempty"`
}
|