github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelLogged.go (about)

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