Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 1.63 KB

chatmessagefromidentityset.md

File metadata and controls

52 lines (42 loc) · 1.63 KB
title description author ms.localizationpriority ms.subservice doc_type
chatMessageFromIdentitySet resource type
Represents the sender of a message in a chat or a channel.
RamjotSingh
medium
teams
resourcePageType

chatMessageFromIdentitySet resource type

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.

Properties

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.

Relationships

None.

JSON representation

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"
  }
}