Package com.microsoft.graph.models
Class MeetingAttendanceReport
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.MeetingAttendanceReport
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class MeetingAttendanceReport
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Meeting Attendance Report.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Attendance Records.The Meeting End Date Time.The Meeting Start Date Time.The Total Participant Count. -
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
-
meetingEndDateTime
@SerializedName(value="meetingEndDateTime", alternate="MeetingEndDateTime") @Expose @Nullable public OffsetDateTime meetingEndDateTimeThe Meeting End Date Time. UTC time when the meeting ended. Read-only. -
meetingStartDateTime
@SerializedName(value="meetingStartDateTime", alternate="MeetingStartDateTime") @Expose @Nullable public OffsetDateTime meetingStartDateTimeThe Meeting Start Date Time. UTC time when the meeting started. Read-only. -
totalParticipantCount
@SerializedName(value="totalParticipantCount", alternate="TotalParticipantCount") @Expose @Nullable public Integer totalParticipantCountThe Total Participant Count. Total number of participants. Read-only. -
attendanceRecords
@SerializedName(value="attendanceRecords", alternate="AttendanceRecords") @Expose @Nullable public AttendanceRecordCollectionPage attendanceRecordsThe Attendance Records. List of attendance records of an attendance report. Read-only.
-
-
Constructor Details
-
MeetingAttendanceReport
public MeetingAttendanceReport()
-
-
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 classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-