bookingCustomerInformation リソースの種類

名前空間: microsoft.graph

予定の顧客プロパティを登録します。 予定には顧客情報のリストが含まれるので、各ユニットは、その予定の一部である顧客のプロパティを示します。

bookingCustomerInformationBase から継承します

プロパティ

プロパティ 種類 説明
emailAddress String 予定を予約している bookingCustomer の SMTP アドレス
customerId 文字列 この予定の bookingCustomer の ID。 予定の作成時に ID が指定されていない場合は、新しい bookingCustomer オブジェクト が作成されます。 設定が完了したら 、customerId 不 変を考慮する必要があります。
location location 予定を予約している bookingCustomer の位置情報を表します。
name String 顧客の名前。
notes String この予定に関連付けられた顧客からのメモ。 値を取得できるのは、この bookingAppointment を ID で読み取る場合のみです。 このプロパティは、新しい顧客との予定を最初に作成する場合にのみ設定できます。 その後、値は customerId で表される顧客から 計算されます
phone String 顧客の電話番号。
timeZone String 顧客のタイム ゾーン。 使用できる値の一覧については 、「dateTimeTimeZone」を参照してください
customQuestionAnswers bookingQuestionAnswer コレクション これは、予定の一部として顧客によって与えられたカスタムの質問と回答のリストで構成されます

リレーションシップ

なし。

JSON 表記

リソースの JSON 表記を次に示します。

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