summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelRisky.go
blob: ebb1e6a34746f83cc164d1d10f9e59347caaf6f1 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Code generated by msgraph.go/gen DO NOT EDIT.

package msgraph

import "time"

// RiskyUser undocumented
type RiskyUser struct {
	// Entity is the base model of RiskyUser
	Entity
	// IsDeleted undocumented
	IsDeleted *bool `json:"isDeleted,omitempty"`
	// IsGuest undocumented
	IsGuest *bool `json:"isGuest,omitempty"`
	// IsProcessing undocumented
	IsProcessing *bool `json:"isProcessing,omitempty"`
	// RiskLastUpdatedDateTime undocumented
	RiskLastUpdatedDateTime *time.Time `json:"riskLastUpdatedDateTime,omitempty"`
	// RiskLevel undocumented
	RiskLevel *RiskLevel `json:"riskLevel,omitempty"`
	// RiskState undocumented
	RiskState *RiskState `json:"riskState,omitempty"`
	// RiskDetail undocumented
	RiskDetail *RiskDetail `json:"riskDetail,omitempty"`
	// UserDisplayName undocumented
	UserDisplayName *string `json:"userDisplayName,omitempty"`
	// UserPrincipalName undocumented
	UserPrincipalName *string `json:"userPrincipalName,omitempty"`
	// History undocumented
	History []RiskyUserHistoryItem `json:"history,omitempty"`
}

// RiskyUserHistoryItem undocumented
type RiskyUserHistoryItem struct {
	// RiskyUser is the base model of RiskyUserHistoryItem
	RiskyUser
	// UserID undocumented
	UserID *string `json:"userId,omitempty"`
	// InitiatedBy undocumented
	InitiatedBy *string `json:"initiatedBy,omitempty"`
	// Activity undocumented
	Activity *RiskUserActivity `json:"activity,omitempty"`
}