Interface ITeamChatMessageReply
Represents an individual Reply on a chat message.
Inherited Members
Namespace: PnP.Core.Model.Teams
Assembly: PnP.Core.dll
Syntax
public interface ITeamChatMessageReply : IDataModel<ITeamChatMessageReply>, IDataModelParent, IDataModelWithContext, ISupportModules<ITeamChatMessageReply>, IDataModelGet<ITeamChatMessageReply>, IDataModelLoad<ITeamChatMessageReply>, IQueryableDataModel
Properties
Attachments
Attached files
Declaration
ITeamChatMessageAttachmentCollection Attachments { get; }
Property Value
Body
Plaintext/HTML representation of the content of the chat message. Representation is specified by the contentType inside the body. The content is always in HTML if the chat message contains a chatMessageMention.
Declaration
ITeamChatMessageContent Body { get; }
Property Value
ChannelIdentity
Channel identity reference
Declaration
ITeamChannelIdentity ChannelIdentity { get; }
Property Value
CreatedDateTime
Read only. Timestamp of when the chat message was created.
Declaration
DateTimeOffset CreatedDateTime { get; }
Property Value
Date
|
DeletedDateTime
Read only. Timestamp at which the chat message was deleted, or null if not deleted.
Declaration
DateTimeOffset DeletedDateTime { get; }
Property Value
Date
|
Etag
Read-only. Version number of the chat message.
Declaration
string Etag { get; }
Property Value
System.
|
From
Read only. Details of the sender of the chat message.
Declaration
ITeamIdentitySet From { get; }
Property Value
HostedContents
Hosted Content tiles
Declaration
ITeamChatMessageHostedContentCollection HostedContents { get; }
Property Value
Id
Read-only. Unique Id of the message.
Declaration
string Id { get; }
Property Value
System.
|
Importance
The importance of the chat message.
Declaration
ChatMessageImportance Importance { get; set; }
Property Value
LastModifiedDateTime
Read only. Timestamp of when the chat message is created or edited, including when a reply is made (if it's a root chat message in a channel) or a reaction is added or removed.
Declaration
DateTimeOffset LastModifiedDateTime { get; }
Property Value
Date
|
Locale
Locale of the team chat message
Declaration
string Locale { get; set; }
Property Value
System.
|
Mentions
List of entities mentioned in the chat message. Currently supports user, bot, team, channel.
Declaration
ITeamChatMessageMentionCollection Mentions { get; }
Property Value
MessageType
The type of chat message. The possible values are: message.
Declaration
ChatMessageType MessageType { get; set; }
Property Value
Reactions
Reactions for this chat message (for example, Like).
Declaration
ITeamChatMessageReactionCollection Reactions { get; }
Property Value
ReplyToId
Read-only. Id of the parent chat message or root chat message of the thread. (Only applies to chat messages in channels not chats)
Declaration
string ReplyToId { get; }
Property Value
System.
|
Subject
The subject of the chat message, in plaintext.
Declaration
string Subject { get; set; }
Property Value
System.
|
Summary
Summary text of the chat message that could be used for push notifications and summary views or fall back views. Only applies to channel chat messages, not chat messages in a chat.
Declaration
string Summary { get; set; }
Property Value
System.
|
WebUrl
The Web URL of the team chat message
Declaration
Uri WebUrl { get; }
Property Value
Uri
|