meetingAttendanceReport リソースの種類

名前空間: microsoft.graph

会議出席レポートに関連付けられた情報が含まれる。

会議出席レポートは、オンライン会議成果物です。 詳細については 、「Online Meeting artifacts and permissions」を参照してください

メソッド

メソッド 戻り値の種類 説明
List meetingAttendanceReports meetingAttendanceReport コレクション meetingAttendanceReport オブジェクトとそのプロパティの一覧を取得します。
会議の取得AttendanceReport meetingAttendanceReport meetingAttendanceReportオブジェクトのプロパティとリレーションシップを読み取る。

プロパティ

プロパティ 種類 説明
id 文字列 出席レポートの一意の識別子。 読み取り専用。
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"}]
}