命名空间:microsoft.graph
表示聊天或频道中的消息 (用户、应用程序或聊天) @mentioned 的资源。
继承自 identitySet。
属性
| 属性 | 类型 | 说明 |
|---|---|---|
| application | identity | 继承自 identitySet。 如果存在,则表示应用程序 (例如,机器人在@mentioned消息中) 。 |
| 谈话 | teamworkConversationIdentity | 如果存在,则表示对话 (,例如消息中的团队、频道或聊天) @mentioned。 |
| 设备 | identity | 继承自 identitySet。 未使用,因为设备不支持 @mention 它。 |
| 用户 | identity | 继承自 identitySet。 如果存在,则表示消息中的用户@mentioned。 |
关系
无。
JSON 表示形式
以下 JSON 表示形式显示了资源类型。
{
"@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"
}
}