blob: d2acf3429e2cb555987023d72f083c52e6d48f39 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// SecureScoreControlStateUpdate undocumented
type SecureScoreControlStateUpdate struct {
// Object is the base model of SecureScoreControlStateUpdate
Object
// AssignedTo undocumented
AssignedTo *string `json:"assignedTo,omitempty"`
// Comment undocumented
Comment *string `json:"comment,omitempty"`
// State undocumented
State *string `json:"state,omitempty"`
// UpdatedBy undocumented
UpdatedBy *string `json:"updatedBy,omitempty"`
// UpdatedDateTime undocumented
UpdatedDateTime *time.Time `json:"updatedDateTime,omitempty"`
}
|