mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
44 lines
1.4 KiB
Go
44 lines
1.4 KiB
Go
// Code generated by msgraph-generate.go 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"`
|
|
}
|