blob: bc71d64c0a26794e44a8e5ebf9fcc804dcaf4df4 (
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"
// ContentProperties undocumented
type ContentProperties struct {
// Object is the base model of ContentProperties
Object
// Extensions undocumented
Extensions []string `json:"extensions,omitempty"`
// Metadata undocumented
Metadata *ContentMetadata `json:"metadata,omitempty"`
// LastModifiedDateTime undocumented
LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
// LastModifiedBy undocumented
LastModifiedBy *string `json:"lastModifiedBy,omitempty"`
}
|