virtualEventPresenter resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
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 |
---|---|---|
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. |
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"}
}