chatMessageHistoryItem resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents activity history information for a message in a chat or a channel.
Properties
Property | Type | Description |
---|---|---|
actions | chatMessageActions | The modification actions of a message item.The possible values are: reactionAdded , reactionRemoved , actionUndefined , unknownFutureValue . |
modifiedDateTime | DateTimeOffset | The date and time when the message was modified. |
reaction | chatMessageReaction | The reaction in the modified message. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.chatMessageHistoryItem",
"modifiedDateTime": "String (timestamp)",
"actions": "String",
"reaction": {
"@odata.type": "microsoft.graph.chatMessageReaction"
}
}