chatMessageMentionedIdentitySet 资源类型
命名空间:microsoft.graph
重要
Microsoft Graph /beta
版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。
表示聊天或频道中的消息 (用户、应用程序或聊天) @mentioned 的资源。
继承自 identitySet。
属性
属性 | 类型 | 说明 |
---|---|---|
application | identity | 继承自 identitySet。 如果存在,则表示应用程序 (例如,机器人在@mentioned消息中) 。 |
谈话 | teamworkConversationIdentity | 如果存在,则表示对话 (,例如消息中的团队、频道或聊天) @mentioned。 |
设备 | identity | 继承自 identitySet。 未使用,因为设备不支持 @mention 它。 |
用户 | identity | 继承自 identitySet。 如果存在,则表示消息中的用户@mentioned。 |
tag | teamworkTagIdentity | 如果存在,则表示团队消息中的标记@mentioned。 |
关系
无。
JSON 表示形式
以下 JSON 表示形式显示了资源类型。
{
"@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"
}
}