Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 1.58 KB

File metadata and controls

51 lines (42 loc) · 1.58 KB
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

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 JSON representation shows the resource type.

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