attendanceRecord リソースの種類

名前空間: microsoft.graph

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

メソッド

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

プロパティ

プロパティ 説明
attendanceIntervals attendanceInterval コレクション 会議に参加してから退出するまでの期間の一覧。
emailAddress String この出席レコードに関連付けられているユーザーのメール アドレス。
同一性 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"
}