bookingCustomQuestion resource type

Namespace: microsoft.graph

Represents a custom question for a bookingBusiness.

Methods

Method Return type Description
List bookingCustomQuestions bookingCustomQuestion collection Get a list of the bookingCustomQuestion objects and their properties.
Create bookingCustomQuestion bookingCustomQuestion Create a new bookingCustomQuestion object.
Get bookingCustomQuestion bookingCustomQuestion Read the properties and relationships of a bookingCustomQuestion object.
Update bookingCustomQuestion bookingCustomQuestion Update the properties of a bookingCustomQuestion object.
Delete bookingCustomQuestion None Delete a bookingCustomQuestion object.

Properties

Property Type Description
answerInputType answerInputType The expected answer type. The possible values are: text, radioButton, unknownFutureValue.
answerOptions String collection List of possible answer values.
displayName String The question.
id String The ID of the custom question. Inherited from entity.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.bookingCustomQuestion",
  "answerInputType": {"@odata.type": "microsoft.graph.answerInputType"},
  "answerOptions": ["String"],
  "displayName": "String",
  "id": "String (identifier)"
}