Package com.microsoft.graph.models
Class OnlineMeeting
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.OnlineMeeting
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class OnlineMeeting
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Online Meeting.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Allow Attendee To Enable Camera.The Allow Attendee To Enable Mic.The Allowed Presenters.The Allow Meeting Chat.The Allow Teamwork Reactions.The Attendance Reports.The Audio Conferencing.The Broadcast Settings.The Chat Info.The Creation Date Time.The End Date Time.The External Id.The Is Broadcast.The Is Entry Exit Announced.The Join Information.The Join Web Url.The Lobby Bypass Settings.The Participants.The Record Automatically.The Start Date Time.The Subject.The Video Teleconference Id. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
allowAttendeeToEnableCamera
@SerializedName(value="allowAttendeeToEnableCamera", alternate="AllowAttendeeToEnableCamera") @Expose @Nullable public Boolean allowAttendeeToEnableCameraThe Allow Attendee To Enable Camera. Indicates whether attendees can turn on their camera. -
allowAttendeeToEnableMic
@SerializedName(value="allowAttendeeToEnableMic", alternate="AllowAttendeeToEnableMic") @Expose @Nullable public Boolean allowAttendeeToEnableMicThe Allow Attendee To Enable Mic. Indicates whether attendees can turn on their microphone. -
allowedPresenters
@SerializedName(value="allowedPresenters", alternate="AllowedPresenters") @Expose @Nullable public OnlineMeetingPresenters allowedPresentersThe Allowed Presenters. Specifies who can be a presenter in a meeting. -
allowMeetingChat
@SerializedName(value="allowMeetingChat", alternate="AllowMeetingChat") @Expose @Nullable public MeetingChatMode allowMeetingChatThe Allow Meeting Chat. Specifies the mode of meeting chat. -
allowTeamworkReactions
@SerializedName(value="allowTeamworkReactions", alternate="AllowTeamworkReactions") @Expose @Nullable public Boolean allowTeamworkReactionsThe Allow Teamwork Reactions. Indicates if Teams reactions are enabled for the meeting. -
audioConferencing
@SerializedName(value="audioConferencing", alternate="AudioConferencing") @Expose @Nullable public AudioConferencing audioConferencingThe Audio Conferencing. The phone access (dial-in) information for an online meeting. Read-only. -
broadcastSettings
@SerializedName(value="broadcastSettings", alternate="BroadcastSettings") @Expose @Nullable public BroadcastMeetingSettings broadcastSettingsThe Broadcast Settings. Settings related to a live event. -
chatInfo
The Chat Info. The chat information associated with this online meeting. -
creationDateTime
@SerializedName(value="creationDateTime", alternate="CreationDateTime") @Expose @Nullable public OffsetDateTime creationDateTimeThe Creation Date Time. The meeting creation time in UTC. Read-only. -
endDateTime
@SerializedName(value="endDateTime", alternate="EndDateTime") @Expose @Nullable public OffsetDateTime endDateTimeThe End Date Time. The meeting end time in UTC. -
externalId
@SerializedName(value="externalId", alternate="ExternalId") @Expose @Nullable public String externalIdThe External Id. The external ID. A custom ID. Optional. -
isBroadcast
@SerializedName(value="isBroadcast", alternate="IsBroadcast") @Expose @Nullable public Boolean isBroadcastThe Is Broadcast. Indicates whether this is a Teams live event. -
isEntryExitAnnounced
@SerializedName(value="isEntryExitAnnounced", alternate="IsEntryExitAnnounced") @Expose @Nullable public Boolean isEntryExitAnnouncedThe Is Entry Exit Announced. Indicates whether to announce when callers join or leave. -
joinInformation
@SerializedName(value="joinInformation", alternate="JoinInformation") @Expose @Nullable public ItemBody joinInformationThe Join Information. The join information in the language and locale variant specified in 'Accept-Language' request HTTP header. Read-only. -
joinWebUrl
@SerializedName(value="joinWebUrl", alternate="JoinWebUrl") @Expose @Nullable public String joinWebUrlThe Join Web Url. The join URL of the online meeting. Read-only. -
lobbyBypassSettings
@SerializedName(value="lobbyBypassSettings", alternate="LobbyBypassSettings") @Expose @Nullable public LobbyBypassSettings lobbyBypassSettingsThe Lobby Bypass Settings. Specifies which participants can bypass the meeting lobby. -
participants
@SerializedName(value="participants", alternate="Participants") @Expose @Nullable public MeetingParticipants participantsThe Participants. The participants associated with the online meeting. This includes the organizer and the attendees. -
recordAutomatically
@SerializedName(value="recordAutomatically", alternate="RecordAutomatically") @Expose @Nullable public Boolean recordAutomaticallyThe Record Automatically. Indicates whether to record the meeting automatically. -
startDateTime
@SerializedName(value="startDateTime", alternate="StartDateTime") @Expose @Nullable public OffsetDateTime startDateTimeThe Start Date Time. The meeting start time in UTC. -
subject
The Subject. The subject of the online meeting. -
videoTeleconferenceId
@SerializedName(value="videoTeleconferenceId", alternate="VideoTeleconferenceId") @Expose @Nullable public String videoTeleconferenceIdThe Video Teleconference Id. The video teleconferencing ID. Read-only. -
attendanceReports
@SerializedName(value="attendanceReports", alternate="AttendanceReports") @Expose @Nullable public MeetingAttendanceReportCollectionPage attendanceReportsThe Attendance Reports. The attendance reports of an online meeting. Read-only.
-
-
Constructor Details
-
OnlineMeeting
public OnlineMeeting()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-