bookingCustomerInformation 资源类型

命名空间:microsoft.graph

注册约会的客户属性。 约会将包含客户信息列表,每个单元将指示属于该约会的客户的属性。

继承自 bookingCustomerInformationBase

属性

属性 类型 说明
customerId String 此约会的 bookingCustomer 的 ID。 如果在创建约会时未指定 ID,则会创建新的 bookingCustomer 对象。 设置后,应考虑 customerId 不可变。
customQuestionAnswers bookingQuestionAnswer 集合 它由客户作为约会的一部分提供的自定义问题和答案列表组成
emailAddress String 预订约会的 bookingCustomer 的 SMTP 地址
位置 位置 表示预订约会的 bookingCustomer 的位置信息。
name String 客户的名称。
notes String 与此约会关联的客户的备注。 仅当按 ID 读取此 bookingAppointment 时,才能获取该值。 仅当最初与新客户创建约会时,才能设置此属性。 在此时间点之后,该值从 customerId 表示的客户中计算。
phone String 客户的电话号码。
timeZone String 客户的时区。 有关可能值的列表,请参阅 dateTimeTimeZone

关系

无。

JSON 表示形式

以下 JSON 表示形式显示了资源类型。

{
  "@odata.type": "#microsoft.graph.bookingCustomerInformation",
  "customerId": "String",
  "customQuestionAnswers": [
    {
      "@odata.type": "microsoft.graph.bookingQuestionAnswer"
    }
  ],
  "emailAddress": "String",
  "location": {
    "@odata.type": "microsoft.graph.location"
  },
  "name": "String",
  "notes": "String",
  "phone": "String",
  "timeZone": "String"
}