chatMessageReactionIdentitySet resource type

Namespace: microsoft.graph

Represents a user that reacted to a message in a chat or a channel. Only the user property has a value.

Inherits from identitySet.

Properties

Property Type Description
application identity Inherited from identitySet. Not set because applications can't react to messages.
device identity Inherited from identitySet. Not set because devices can't react to messages.
user identity Inherited from identitySet. Details about the user who reacted to the message.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.chatMessageReactionIdentitySet",
  "application": {
    "@odata.type": "microsoft.graph.identity"
  },
  "device": {
    "@odata.type": "microsoft.graph.identity"
  },
  "user": {
    "@odata.type": "microsoft.graph.identity"
  }
}