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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // LogonUser undocumented
     8  type LogonUser struct {
     9  	// Object is the base model of LogonUser
    10  	Object
    11  	// AccountDomain undocumented
    12  	AccountDomain *string `json:"accountDomain,omitempty"`
    13  	// AccountName undocumented
    14  	AccountName *string `json:"accountName,omitempty"`
    15  	// AccountType undocumented
    16  	AccountType *UserAccountSecurityType `json:"accountType,omitempty"`
    17  	// FirstSeenDateTime undocumented
    18  	FirstSeenDateTime *time.Time `json:"firstSeenDateTime,omitempty"`
    19  	// LastSeenDateTime undocumented
    20  	LastSeenDateTime *time.Time `json:"lastSeenDateTime,omitempty"`
    21  	// LogonID undocumented
    22  	LogonID *string `json:"logonId,omitempty"`
    23  	// LogonTypes undocumented
    24  	LogonTypes []LogonType `json:"logonTypes,omitempty"`
    25  }