chatMessageFromIdentitySet resource type

Namespace: microsoft.graph

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 instance, 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 is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.chatMessageFromIdentitySet",
  "application": {
    "@odata.type": "microsoft.graph.identity"
  },
  "device": {
    "@odata.type": "microsoft.graph.identity"
  },
  "user": {
    "@odata.type": "microsoft.graph.identity"
  }
}