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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // Mention undocumented
     8  type Mention struct {
     9  	// Entity is the base model of Mention
    10  	Entity
    11  	// Mentioned undocumented
    12  	Mentioned *EmailAddress `json:"mentioned,omitempty"`
    13  	// MentionText undocumented
    14  	MentionText *string `json:"mentionText,omitempty"`
    15  	// ClientReference undocumented
    16  	ClientReference *string `json:"clientReference,omitempty"`
    17  	// CreatedBy undocumented
    18  	CreatedBy *EmailAddress `json:"createdBy,omitempty"`
    19  	// CreatedDateTime undocumented
    20  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    21  	// ServerCreatedDateTime undocumented
    22  	ServerCreatedDateTime *time.Time `json:"serverCreatedDateTime,omitempty"`
    23  	// DeepLink undocumented
    24  	DeepLink *string `json:"deepLink,omitempty"`
    25  	// Application undocumented
    26  	Application *string `json:"application,omitempty"`
    27  }
    28  
    29  // MentionAction undocumented
    30  type MentionAction struct {
    31  	// Object is the base model of MentionAction
    32  	Object
    33  	// Mentionees undocumented
    34  	Mentionees []IdentitySet `json:"mentionees,omitempty"`
    35  }