Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
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 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, 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. |
Relationships
None.
JSON representation
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"
}
}