blob: 7f59f89a1a4c8cf1aed1a9a78f9003b285ed2cbc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// ItemActivityTimeSet undocumented
type ItemActivityTimeSet struct {
// Object is the base model of ItemActivityTimeSet
Object
// LastRecordedDateTime undocumented
LastRecordedDateTime *time.Time `json:"lastRecordedDateTime,omitempty"`
// ObservedDateTime undocumented
ObservedDateTime *time.Time `json:"observedDateTime,omitempty"`
// RecordedDateTime undocumented
RecordedDateTime *time.Time `json:"recordedDateTime,omitempty"`
}
|