attendanceInterval resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Contains information associated with an attendance interval in an attendanceRecord.
Properties
Property | Type | Description |
---|---|---|
durationInSeconds | Int32 | Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime. |
joinDateTime | DateTime | The time the attendee joined in UTC. |
leaveDateTime | DateTime | The time the attendee left in UTC. |
Tip
When data is lacking, the value of joinDateTime or leaveDateTime will be set to null
, and the value of durationInSeconds will be set to 0
in the response body of the Get meetingAttendanceReport method.
JSON representation
The following JSON representation shows the resource type.
{
"joinDateTime": "String (timestamp)",
"leaveDateTime": "String (timestamp)",
"durationInSeconds": "Int32"
}