attendanceRecord リソースの種類

名前空間: microsoft.graph

会議 AttendanceReport の出席レコードに関連付けられている情報を格納します

メソッド

メソッド 戻り値の種類 説明
list attendanceRecords attendanceRecord コレクション attendanceRecord オブジェクト とそのプロパティの 一覧を取得します。

プロパティ

プロパティ 種類 説明
attendanceIntervals attendanceInterval コレクション 会議への参加と退会の間の期間の一覧。
emailAddress String この atttendance レコードに関連付けられたユーザーの電子メール アドレス。
ID identity この atttendance レコードに関連付けられたユーザーの ID。
role 文字列 出席者の役割。 可能な値は、NoneAttendeePresenter、および Organizer です。
totalAttendanceInSeconds Int32 出席の合計時間 (秒)。

JSON 表記

リソースの JSON 表記を次に示します。

{
  "@odata.type": "#microsoft.graph.attendanceRecord",
  "emailAddress": "String",
  "totalAttendanceInSeconds": "Int32",
  "role": "String(None|Attendee|Presenter|Organizer)",
  "identity": {
    "@odata.type": "#microsoft.graph.identity"
  },
  "attendanceIntervals": [
    {
      "@odata.type": "#microsoft.graph.attendanceInterval"
    }
  ]
}