blob: cff50a02e6934f33fcaa391083dd4ef6ed00e614 (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// Conversation undocumented
type Conversation struct {
// Entity is the base model of Conversation
Entity
// Topic undocumented
Topic *string `json:"topic,omitempty"`
// HasAttachments undocumented
HasAttachments *bool `json:"hasAttachments,omitempty"`
// LastDeliveredDateTime undocumented
LastDeliveredDateTime *time.Time `json:"lastDeliveredDateTime,omitempty"`
// UniqueSenders undocumented
UniqueSenders []string `json:"uniqueSenders,omitempty"`
// Preview undocumented
Preview *string `json:"preview,omitempty"`
// Threads undocumented
Threads []ConversationThread `json:"threads,omitempty"`
}
|