bookingCustomQuestion resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents a custom question for a bookingBusiness.
Inherits from bookingNamedEntity.
Methods
Method | Return type | Description |
---|---|---|
List | bookingCustomQuestion collection | Get a list of the bookingCustomQuestion objects and their properties. |
Create | bookingCustomQuestion | Create a new bookingCustomQuestion object. |
Get | bookingCustomQuestion | Read the properties and relationships of a bookingCustomQuestion object. |
Update | None | Update the properties of a bookingCustomQuestion object. |
Delete | 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. |
createdDateTime | DateTimeOffset | The date, time and timezone when the custom question was created. |
displayName | String | The question. Inherited from bookingNamedEntity. |
id | String | The ID of the custom question. Inherited from entity. |
lastUpdatedDateTime | DateTimeOffset | The date, time and timezone when the custom question was last updated. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.bookingCustomQuestion",
"id": "String (identifier)",
"createdDateTime": "String (timestamp)",
"lastUpdatedDateTime": "String (timestamp)",
"displayName": "String",
"answerInputType": "String",
"answerOptions": [
"String"
]
}