attendanceRecord リソースの種類

名前空間: microsoft.graph

meetingAttendanceReport 内の出席レコードに関連付けられた情報が含まれます。

メソッド

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

プロパティ

プロパティ 説明
attendanceIntervals attendanceInterval コレクション 会議に参加してから退出するまでの期間の一覧。
emailAddress String この出席レコードに関連付けられているユーザーのアドレスをEmailします。
Id identity この出席レコードに関連付けられているユーザーの ID。
role String 出席者の役割。 可能な値は、NoneAttendeePresenter、および Organizer です。
totalAttendanceInSeconds Int32 出席の合計期間 (秒)。

JSON 表記

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

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