Skip to content

Latest commit

 

History

History
62 lines (46 loc) · 2.4 KB

meetingregistrationbase.md

File metadata and controls

62 lines (46 loc) · 2.4 KB
title description author ms.localizationpriority ms.subservice doc_type
meetingRegistrationBase resource type
Contains information about base meeting registration.
awang119
medium
cloud-communications
resourcePageType

meetingRegistrationBase resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents base registration details of an online meeting.

Base type of meetingRegistration and externalMeetingRegistration.

Tip

This is an abstract type and cannot be used directly. Use the derived type meetingRegistration or externalMeetingRegistration instead.

Properties

Property Type Description
allowedRegistrant meetingAudience Specifies who can register for the meeting.

meetingAudience values

Value Description
everyone Everyone can register for the meeting.
organization Everyone in the organizer’s organization can register for the meeting.
unknownFutureValue Evolvable enumeration sentinel value. Do not use.

Relationships

Relationship Type Description
registrants meetingRegistrantBase collection Registrants of the online meeting.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.meetingRegistrationBase",
  "allowedRegistrant": "String",

  "registrants": [{ "@odata.type": "microsoft.graph.meetingRegistrantBase" }]
}