github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelPost.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // Post undocumented
     8  type Post struct {
     9  	// OutlookItem is the base model of Post
    10  	OutlookItem
    11  	// Body undocumented
    12  	Body *ItemBody `json:"body,omitempty"`
    13  	// ReceivedDateTime undocumented
    14  	ReceivedDateTime *time.Time `json:"receivedDateTime,omitempty"`
    15  	// HasAttachments undocumented
    16  	HasAttachments *bool `json:"hasAttachments,omitempty"`
    17  	// From undocumented
    18  	From *Recipient `json:"from,omitempty"`
    19  	// Sender undocumented
    20  	Sender *Recipient `json:"sender,omitempty"`
    21  	// ConversationThreadID undocumented
    22  	ConversationThreadID *string `json:"conversationThreadId,omitempty"`
    23  	// NewParticipants undocumented
    24  	NewParticipants []Recipient `json:"newParticipants,omitempty"`
    25  	// ConversationID undocumented
    26  	ConversationID *string `json:"conversationId,omitempty"`
    27  	// Importance undocumented
    28  	Importance *Importance `json:"importance,omitempty"`
    29  	// InReplyTo undocumented
    30  	InReplyTo *Post `json:"inReplyTo,omitempty"`
    31  	// SingleValueExtendedProperties undocumented
    32  	SingleValueExtendedProperties []SingleValueLegacyExtendedProperty `json:"singleValueExtendedProperties,omitempty"`
    33  	// MultiValueExtendedProperties undocumented
    34  	MultiValueExtendedProperties []MultiValueLegacyExtendedProperty `json:"multiValueExtendedProperties,omitempty"`
    35  	// Extensions undocumented
    36  	Extensions []Extension `json:"extensions,omitempty"`
    37  	// Attachments undocumented
    38  	Attachments []Attachment `json:"attachments,omitempty"`
    39  	// Mentions undocumented
    40  	Mentions []Mention `json:"mentions,omitempty"`
    41  }