Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 1.6 KB

membersdeletedeventmessagedetail.md

File metadata and controls

51 lines (42 loc) · 1.6 KB
title description author ms.localizationpriority ms.subservice doc_type
membersDeletedEventMessageDetail resource type
Represents the details of an event message about members deleted.
RamjotSingh
medium
teams
resourcePageType

membersDeletedEventMessageDetail resource type

Namespace: microsoft.graph

Represents the details of an event message about members deleted. This message is generated when members are removed from a chat, a channel, or a team.

Inherits from eventMessageDetail.

Properties

Property Type Description
initiator identitySet Initiator of the event.
members teamworkUserIdentity collection List of members deleted.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.membersDeletedEventMessageDetail",
  "members": [
    {
      "@odata.type": "microsoft.graph.teamworkUserIdentity"
    }
  ],
  "initiator": {
    "@odata.type": "microsoft.graph.identitySet"
  }
}

Related content