Bewerken

Delen via


virtualEvent resource type

Namespace: microsoft.graph

Represents an abstract base type for a virtual event. Base type of virtualEventTownhall and virtualEventWebinar.

Inherits from entity.

Tip

This is an abstract type and can't be used directly. Use the derived types virtualEventTownhall or virtualEventWebinar instead.

Properties

Property Type Description
createdBy communicationsIdentitySet The identity information for the creator of the virtual event. Inherited from virtualEvent.
description itemBody A description of the virtual event.
displayName String The display name of the virtual event.
endDateTime dateTimeTimeZone The end time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. For details on how to get all available time zones using PowerShell, see Get-TimeZone.
id String The unique identifier of the virtual event. Inherited from entity.
settings virtualEventSettings The virtual event settings.
startDateTime dateTimeTimeZone Start time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. For details on how to get all available time zones using PowerShell, see Get-TimeZone.
status virtualEventStatus The status of the virtual event. The possible values are: draft, published, canceled, and unknownFutureValue.

Relationships

Relationship Type Description
presenters virtualEventPresenter collection The virtual event presenters.
sessions virtualEventSession collection The sessions for the virtual event.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.virtualEvent",
  "createdBy": {
    "@odata.type": "microsoft.graph.communicationsIdentitySet"
  },
  "description": {
    "@odata.type": "microsoft.graph.itemBody"
  },
  "displayName": "String",
  "endDateTime": {
    "@odata.type": "microsoft.graph.dateTimeTimeZone"
  },
  "id": "String (identifier)",
  "settings": {
    "@odata.type": "microsoft.graph.virtualEventSettings"
  },
  "startDateTime": {
    "@odata.type": "microsoft.graph.dateTimeTimeZone"
  },
  "status": "String"
}