Skip to content

Latest commit

 

History

History
60 lines (49 loc) · 2.81 KB

File metadata and controls

60 lines (49 loc) · 2.81 KB
title virtualEventPresenter resource type
description Represents information about a presenter of a virtual event.
author frankpeng7
ms.localizationpriority medium
ms.subservice cloud-communications
doc_type resourcePageType
ms.date 05/11/2024

virtualEventPresenter resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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 detail information of the presenter. This property returns null when the virtual event type is virtualEventTownhall.

Relationships

None.

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