Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 1.29 KB

File metadata and controls

46 lines (38 loc) · 1.29 KB
title chatMessageHistoryItem resource type
description Represents the edition history of a message in a chat or a channel.
author agnesliu
ms.localizationpriority high
ms.subservice teams
doc_type resourcePageType
ms.date 07/22/2024

chatMessageHistoryItem resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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"
  }
}