bookingCustomerInformation 资源类型
命名空间:microsoft.graph
重要
Microsoft Graph /beta
版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。
注册约会的客户属性。 约会包含客户信息列表,每个单元指示属于该约会的客户的属性。
继承自 bookingCustomerInformationBase。
属性
属性 | 类型 | 说明 |
---|---|---|
customerId | String | 此约会的 bookingCustomer 的 ID。 如果在创建约会时未指定 ID,则会创建新的 bookingCustomer 对象。 设置后,应考虑 customerId 不可变。 |
customQuestionAnswers | bookingQuestionAnswer 集合 | 它包含客户在约会过程中提供的自定义问题和答案列表。 |
emailAddress | String | 预订约会的 bookingCustomer 的 SMTP 地址。 |
位置 | 位置 | 表示预订约会的 bookingCustomer 的位置信息。 |
name | String | 客户的名称。 |
notes | String | 与此约会关联的客户的备注。 仅当按 ID 读取此 bookingAppointment 时,才能获取该值。 仅当最初与新客户创建约会时,才能设置此属性。 在此时间点之后,该值从 customerId 表示的客户中计算。 |
phone | String | 客户的电话号码。 |
smsNotificationsEnabled | 布尔值 | 指示是否将短信通知发送给客户进行约会 |
timeZone | String | 客户的时区。 有关可能值的列表,请参阅 dateTimeTimeZone。 |
关系
无。
JSON 表示形式
以下 JSON 表示形式显示了资源类型。
{
"@odata.type": "#microsoft.graph.bookingCustomerInformation",
"customerId": "String",
"name": "String",
"emailAddress": "String",
"phone": "String",
"notes": "String",
"smsNotificationsEnabled": "Boolean",
"location": {
"@odata.type": "microsoft.graph.location"
},
"timeZone": "String",
"customQuestionAnswers": [
{
"@odata.type": "microsoft.graph.bookingQuestionAnswer"
}
]
}