virtualEventRegistrationQuestionAnswer 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 an answer or answers to either a virtualEventRegistrationCustomQuestion or a virtualEventRegistrationPredefinedQuestion.
Properties
Property | Type | Description |
---|---|---|
booleanValue | Boolean | Boolean answer to the virtualEventRegistrationCustomQuestion. Only appears when answerInputType is boolean . |
displayName | String | Display name of the registration question. |
multiChoiceValues | String collection | A collection of text answers to the virtualEventRegistrationCustomQuestion. Only appears when answerInputType is multiChoice . |
questionId | String | The identifier of either a virtualEventRegistrationCustomQuestion or a virtualEventRegistrationPredefinedQuestion. |
value | String | Text answer to the virtualEventRegistrationCustomQuestion or the virtualEventRegistrationPredefinedQuestion. Appears when answerInputType is text , multilineText or singleChoice . |
JSON representation
The following JSON representation shows the resource type
{
"@odata.type": "#microsoft.graph.virtualEventRegistrationQuestionAnswer",
"booleanValue": "Boolean",
"displayName": "String",
"multiChoiceValues": [
"String"
],
"questionId": "String",
"value": "String"
}