Skip to content

Latest commit

 

History

History
55 lines (46 loc) · 2.72 KB

File metadata and controls

55 lines (46 loc) · 2.72 KB
title virtualEventPresenter resource type
description Represents information about a presenter of a virtual event.
author awang119
ms.localizationpriority medium
ms.subservice cloud-communications
doc_type resourcePageType
ms.date 08/01/2024

virtualEventPresenter resource type

Namespace: microsoft.graph

Represents information about a presenter of a virtual event.

Methods

Method Return Type Description
List virtualEventPresenter collection Get the list of all virtualEventPresenter objects of a virtual event.
Create virtualEventPresenter Create a new virtualEventPresenter object.
Get virtualEventPresenter Read the properties and relationships of a virtualEventPresenter object.
Update virtualEventPresenter Update the properties of a virtualEventPresenter object.
Delete None Delete a virtualEventPresenter object.

Properties

Property Type Description
email String Email address of the presenter.
id String Unique identifier of the presenter. Inherited from entity.
identity identity Identity information of the presenter. The supported identities are: communicationsGuestIdentity and communicationsUserIdentity.
presenterDetails virtualEventPresenterDetails Other details about the presenter. This property returns null when the virtual event type is virtualEventTownhall.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.virtualEventPresenter",
  "email": "String",
  "id": "String (identifier)",
  "identity": {"@odata.type": "microsoft.graph.identity"},
  "presenterDetails": {"@odata.type": "microsoft.graph.virtualEventPresenterDetails"}
}