bookingQuestionAnswer 资源类型

命名空间:microsoft.graph

重要

Microsoft Graph /beta 版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。

包含自定义问题、客户为自定义问题提供的答案,以及创建约会时自定义问题的属性。

属性

属性 类型 说明
String 如果 answerInputType 为 , text则由用户给出的答案。
answerInputType answerInputType 预期的答案类型。 可能的值包括 textradioButtonunknownFutureValue
answerOptions 字符串集合 如果 answerInputType 为 radioButton,这将包含可能的答案值列表。
isRequired 布尔值 指示是否必须回答自定义问题。
问题 String 问题。
questionId String 自定义问题的 ID。
selectedOptions 字符串集合 用户选择的答案。

关系

无。

JSON 表示形式

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

{
  "@odata.type": "#microsoft.graph.bookingQuestionAnswer",
  "questionId": "String",
  "question": "String",
  "answerInputType": {"@odata.type": "microsoft.graph.answerInputType"},
  "answerOptions": [
    "String"
  ],
  "isRequired": "Boolean",
  "answer": "String",
  "selectedOptions": [
    "String"
  ]
}