blob: 3eddf4fa991b3188ecb9f59db1328e01cf3efd85 (
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
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// MalwareRiskEvent undocumented
type MalwareRiskEvent struct {
// LocatedRiskEvent is the base model of MalwareRiskEvent
LocatedRiskEvent
// DeviceInformation undocumented
DeviceInformation *string `json:"deviceInformation,omitempty"`
// MalwareName undocumented
MalwareName *string `json:"malwareName,omitempty"`
}
// MalwareState undocumented
type MalwareState struct {
// Object is the base model of MalwareState
Object
// Category undocumented
Category *string `json:"category,omitempty"`
// Family undocumented
Family *string `json:"family,omitempty"`
// Name undocumented
Name *string `json:"name,omitempty"`
// Severity undocumented
Severity *string `json:"severity,omitempty"`
// WasRunning undocumented
WasRunning *bool `json:"wasRunning,omitempty"`
}
|