mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-24 19:52:03 -08:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
32 lines
1.0 KiB
Go
32 lines
1.0 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"`
|
|
}
|