Skip to content

Latest commit

 

History

History
75 lines (62 loc) · 3.13 KB

File metadata and controls

75 lines (62 loc) · 3.13 KB
title broadcastMeetingSettings resource type
description Represents settings related to a live event in Microsoft Teams.
author awang119
ms.localizationpriority medium
ms.subservice cloud-communications
doc_type resourcePageType
ms.date 03/21/2024

broadcastMeetingSettings resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents settings related to a live event in Microsoft Teams.

Properties

Property Type Description
allowedAudience broadcastMeetingAudience Defines who can join the Teams live event. Possible values are listed in the following table.
captions broadcastMeetingCaptionSettings Caption settings of a Teams live event.
isRecordingEnabled Boolean Indicates whether recording is enabled for this Teams live event. Default value is false.
isAttendeeReportEnabled Boolean Indicates whether attendee report is enabled for this Teams live event. Default value is false.
isQuestionAndAnswerEnabled Boolean Indicates whether Q&A is enabled for this Teams live event. Default value is false.
isVideoOnDemandEnabled Boolean Indicates whether video on demand is enabled for this Teams live event. Default value is false.

broadcastMeetingAudience values

Value Description
everyone This Teams live event is open to anyone. This is the default value.
organization Everyone in your org can join this Teams live event.
roleIsAttendee Only the specified people can join this Teams live event.
unknownFutureValue Evolvable enumeration sentinel value. Don't use.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.broadcastMeetingSettings",
  "allowedAudience": "String",
  "isRecordingEnabled": "Boolean",
  "isAttendeeReportEnabled": "Boolean",
  "isQuestionAndAnswerEnabled": "Boolean",
  "isVideoOnDemandEnabled": "Boolean",
  "captions": {
    "@odata.type": "microsoft.graph.broadcastMeetingCaptionSettings"
  }
}