会话资源类型

命名空间:microsoft.graph.callRecords

代表User-User电话会议User-Meeting通信的一种通信。

方法

方法 返回类型 说明
列表会话 microsoft.graph.callRecords.session 集合 检索与 callRecord 对象关联的会话列表。

属性

属性 类型 说明
id string 会话的唯一标识符。 只读。
呼叫者 microsoft.graph.callRecords.endpoint 启动会话的终结点。
被叫方 microsoft.graph.callRecords.endpoint 应答会话的终结点。
failureInfo microsoft.graph.callRecords.failureInfo 与会话关联的失败信息(如果会话失败)。
modalities microsoft.graph.callRecords.modality 集合 会话中呈现的模态列表。 可取值为:unknownaudiovideovideoBasedScreenSharingdatascreenSharingunknownFutureValue
startDateTime DateTimeOffset 第一个用户加入会话的 UTC 时间。 DateTimeOffset 表示使用 ISO 8601 格式的日期和时间信息,并且始终处于 UTC 时间。 例如,2014 年 1 月 1 日午夜 UTC 为 2014-01-01T00:00:00Z
endDateTime DateTimeOffset 最后一个用户离开会话的 UTC 时间。 DateTimeOffset 表示使用 ISO 8601 格式的日期和时间信息,并且始终处于 UTC 时间。 例如,2014 年 1 月 1 日午夜 UTC 为 2014-01-01T00:00:00Z

关系

关系 类型 说明
microsoft.graph.callRecords.segment 集合 会话中涉及的分段列表。 只读。 可为 Null。

JSON 表示形式

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

{
  "id": "String (identifier)",
  "caller": {"@odata.type": "microsoft.graph.callRecords.endpoint"},
  "callee": {"@odata.type": "microsoft.graph.callRecords.endpoint"},
  "failureInfo": {"@odata.type": "microsoft.graph.callRecords.failureInfo"},
  "modalities": ["string"],
  "startDateTime": "String (timestamp)",
  "endDateTime": "String (timestamp)"
}