blob: 017b342fc27d2c911b90f0ad6e58fa92c346c5d5 (
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.go/gen DO NOT EDIT.
package msgraph
import "time"
// PendingContentUpdate undocumented
type PendingContentUpdate struct {
// Object is the base model of PendingContentUpdate
Object
// QueuedDateTime undocumented
QueuedDateTime *time.Time `json:"queuedDateTime,omitempty"`
}
// PendingOperations undocumented
type PendingOperations struct {
// Object is the base model of PendingOperations
Object
// PendingContentUpdate undocumented
PendingContentUpdate *PendingContentUpdate `json:"pendingContentUpdate,omitempty"`
}
|