Package com.microsoft.graph.models
Class AttendanceRecord
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.AttendanceRecord
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class AttendanceRecord
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Attendance Record.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Attendance Intervals.The Email Address.The Identity.The Role.The Total Attendance In Seconds. -
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
-
attendanceIntervals
@SerializedName(value="attendanceIntervals", alternate="AttendanceIntervals") @Expose @Nullable public List<AttendanceInterval> attendanceIntervalsThe Attendance Intervals. List of time periods between joining and leaving a meeting. -
emailAddress
@SerializedName(value="emailAddress", alternate="EmailAddress") @Expose @Nullable public String emailAddressThe Email Address. Email address of the user associated with this attendance record. -
identity
The Identity. Identity of the user associated with this attendance record. -
role
The Role. Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer. -
totalAttendanceInSeconds
@SerializedName(value="totalAttendanceInSeconds", alternate="TotalAttendanceInSeconds") @Expose @Nullable public Integer totalAttendanceInSecondsThe Total Attendance In Seconds. Total duration of the attendances in seconds.
-
-
Constructor Details
-
AttendanceRecord
public AttendanceRecord()
-
-
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
-