| title | chatMessageMentionedIdentitySet resource type |
|---|---|
| description | Represents the resource @mentioned in a message in a chat or a channel. |
| author | RamjotSingh |
| ms.localizationpriority | medium |
| ms.subservice | teams |
| doc_type | resourcePageType |
| ms.date | 09/11/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents the resource (user, application, or conversation) @mentioned in a message in a chat or a channel.
Inherits from identitySet.
| 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, channel, or chat) @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. |
| tag | teamworkTagIdentity | If present, represents a tag @mentioned in a team message. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.chatMessageMentionedIdentitySet",
"user": {
"@odata.type": "microsoft.graph.identity"
},
"application": {
"@odata.type": "microsoft.graph.identity"
},
"device": {
"@odata.type": "microsoft.graph.identity"
},
"conversation": {
"@odata.type": "microsoft.graph.teamworkConversationIdentity"
},
"tag": {
"@odata.type": "microsoft.graph.teamworkTagIdentity"
}
}