Interface IChatMessageReaction
Represents a reaction to a chatMessage entity.
Inherited Members
Namespace: PnP.Core.Model.Me
Assembly: PnP.Core.dll
Syntax
public interface IChatMessageReaction : IDataModel<IChatMessageReaction>, IDataModelParent, IDataModelWithContext, ISupportModules<IChatMessageReaction>
Properties
CreatedDateTime
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
Declaration
DateTimeOffset CreatedDateTime { get; set; }
Property Value
DateTimeOffset
|
ReactionType
Type of reaction
Declaration
ChatMessageReactionType ReactionType { get; set; }
Property Value
ChatMessageReactionType
|
User
The user who reacted to the message.
Declaration
IChatIdentitySet User { get; set; }
Property Value
IChatIdentitySet
|