blob: 9b886b88d01cbb15a8a16704bc3a9cc16dcf419e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// Document undocumented
type Document struct {
// Entity is the base model of Document
Entity
// Comments undocumented
Comments []DocumentComment `json:"comments,omitempty"`
}
// DocumentComment undocumented
type DocumentComment struct {
// Entity is the base model of DocumentComment
Entity
// Content undocumented
Content *string `json:"content,omitempty"`
// Replies undocumented
Replies []DocumentCommentReply `json:"replies,omitempty"`
}
// DocumentCommentReply undocumented
type DocumentCommentReply struct {
// Entity is the base model of DocumentCommentReply
Entity
// Content undocumented
Content *string `json:"content,omitempty"`
}
|