meetingAttendanceReport 资源类型

命名空间:microsoft.graph

重要

Microsoft Graph /beta 版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。

包含与会议出席报告关联的信息。

会议出席报告是联机会议项目。 有关详细信息,请参阅 联机会议项目和权限

方法

方法 返回类型 说明
列出 meetingAttendanceReports meetingAttendanceReport 集合 获取 meetingAttendanceReport 对象及其属性的列表。
获取 meetingAttendanceReport meetingAttendanceReport 读取 meetingAttendanceReport 对象的属性和关系。

属性

属性 类型 说明
id String 出席报告的唯一标识符。 此为只读属性。
meetingEndDateTime DateTimeOffset 会议结束的 UTC 时间。 此为只读属性。
meetingStartDateTime DateTimeOffset 会议开始的 UTC 时间。 此为只读属性。
totalParticipantCount Int32 参与者总数。 只读。

关系

关系 类型 说明
attendanceRecords attendanceRecord 集合 出席报告的出席记录列表。 只读。

JSON 表示形式

下面是资源的 JSON 表示形式。

{
  "@odata.type": "#microsoft.graph.meetingAttendanceReport",
  "id": "String(identifier)",
  "meetingEndDateTime": "String (timestamp)",
  "meetingStartDateTime": "String (timestamp)",
  "totalParticipantCount": "Int32",

  "attendanceRecords": [{"@odata.type": "#microsoft.graph.attendanceRecord"}]
}