blob: 1acd0a42f1a059f86efd6c6af6e894f482d31a58 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// SecurityActionState undocumented
type SecurityActionState struct {
// Object is the base model of SecurityActionState
Object
// AppID undocumented
AppID *string `json:"appId,omitempty"`
// Status undocumented
Status *OperationStatus `json:"status,omitempty"`
// UpdatedDateTime undocumented
UpdatedDateTime *time.Time `json:"updatedDateTime,omitempty"`
// User undocumented
User *string `json:"user,omitempty"`
}
|