chatMessageMentionedIdentitySet resource type

Namespace: microsoft.graph

Represents the resource (user, application, or conversation) @mentioned in a message in a chat or a channel.

Inherits from identitySet.

Properties

Property Type Description
application identity Inherited from identitySet. If present, represents an application (for example, bot) @mentioned in a message.
conversation teamworkConversationIdentity If present, represents a conversation (for example, team or channel) @mentioned in a message.
device identity Inherited from identitySet. Not used because it's not supported to @mention devices.
user identity Inherited from identitySet. If present, represents a user @mentioned in a message.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

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