summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/UserAccountModel.go
blob: 660b075656904db339b0b178633929384c6d7ebd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

import "time"

// UserAccount undocumented
type UserAccount struct {
	// Object is the base model of UserAccount
	Object
	// DisplayName undocumented
	DisplayName *string `json:"displayName,omitempty"`
	// LastSeenDateTime undocumented
	LastSeenDateTime *time.Time `json:"lastSeenDateTime,omitempty"`
	// RiskScore undocumented
	RiskScore *string `json:"riskScore,omitempty"`
	// Service undocumented
	Service *string `json:"service,omitempty"`
	// SigninName undocumented
	SigninName *string `json:"signinName,omitempty"`
	// Status undocumented
	Status *AccountStatus `json:"status,omitempty"`
}