Package com.microsoft.graph.models
Class OnlineMeeting
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.OnlineMeetingBase
com.microsoft.graph.models.OnlineMeeting
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class OnlineMeeting
extends OnlineMeetingBase
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Online Meeting.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Broadcast Settings.The Creation Date Time.The End Date Time.The External Id.The Is Broadcast.The Participants.The Recordings.The Start Date Time.The Transcripts.Fields inherited from class com.microsoft.graph.models.OnlineMeetingBase
allowAttendeeToEnableCamera, allowAttendeeToEnableMic, allowedPresenters, allowMeetingChat, allowParticipantsToChangeName, allowTeamworkReactions, attendanceReports, audioConferencing, chatInfo, isEntryExitAnnounced, joinInformation, joinMeetingIdSettings, joinWebUrl, lobbyBypassSettings, recordAutomatically, shareMeetingChatHistoryDefault, subject, videoTeleconferenceId, watermarkProtection -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
broadcastSettings
@SerializedName(value="broadcastSettings", alternate="BroadcastSettings") @Expose @Nullable public BroadcastMeetingSettings broadcastSettingsThe Broadcast Settings. -
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. -
isBroadcast
@SerializedName(value="isBroadcast", alternate="IsBroadcast") @Expose @Nullable public Boolean isBroadcastThe Is Broadcast. -
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. -
startDateTime
@SerializedName(value="startDateTime", alternate="StartDateTime") @Expose @Nullable public OffsetDateTime startDateTimeThe Start Date Time. The meeting start time in UTC. -
recordings
@SerializedName(value="recordings", alternate="Recordings") @Expose @Nullable public CallRecordingCollectionPage recordingsThe Recordings. The recordings of an online meeting. Read-only. -
transcripts
@SerializedName(value="transcripts", alternate="Transcripts") @Expose @Nullable public CallTranscriptCollectionPage transcriptsThe Transcripts. The transcripts 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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classOnlineMeetingBase- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-