bookingCustomQuestion resource type
Namespace: microsoft.graph
Represents a custom question for a bookingBusiness.
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 | bookingCustomQuestion | 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 time zone when the custom question was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z . |
displayName | String | The question. |
id | String | The ID of the custom question. Inherited from entity. |
lastUpdatedDateTime | DateTimeOffset | The date, time, and time zone when the custom question was last updated. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z . |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.bookingCustomQuestion",
"answerInputType": "String",
"answerOptions": ["String"],
"createdDateTime": "String (timestamp)",
"displayName": "String",
"id": "String (identifier)",
"lastUpdatedDateTime": "String (timestamp)"
}