blob: 11f7737fa932a7928a91db4201b1d9781b0e59a9 (
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"
// SharingDetail undocumented
type SharingDetail struct {
// Object is the base model of SharingDetail
Object
// SharedBy undocumented
SharedBy *InsightIdentity `json:"sharedBy,omitempty"`
// SharedDateTime undocumented
SharedDateTime *time.Time `json:"sharedDateTime,omitempty"`
// SharingSubject undocumented
SharingSubject *string `json:"sharingSubject,omitempty"`
// SharingType undocumented
SharingType *string `json:"sharingType,omitempty"`
// SharingReference undocumented
SharingReference *ResourceReference `json:"sharingReference,omitempty"`
}
|