| title | chatMessageFromIdentitySet resource type |
|---|---|
| description | Represents the sender of a message in a chat or a channel. |
| author | RamjotSingh |
| ms.localizationpriority | medium |
| ms.subservice | teams |
| doc_type | resourcePageType |
| ms.date | 07/22/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents the sender of a message in a chat or a channel. This object may be null for a message that has been deleted or sent by the Microsoft Teams internal system; for example, event messages for addition of members.
Inherits from identitySet.
| Property | Type | Description |
|---|---|---|
| application | identity | Inherited from identitySet. If present, represents the application (for example, bot) that sent the message. |
| device | identity | Inherited from identitySet. Not used. |
| user | teamworkUserIdentity | If present, represents the user that sent the message. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.chatMessageFromIdentitySet",
"user": {
"@odata.type": "microsoft.graph.identity"
},
"application": {
"@odata.type": "microsoft.graph.identity"
},
"device": {
"@odata.type": "microsoft.graph.identity"
}
}