virtualEventRegistrationQuestion 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 registration question associated with a virtualEventRegistration.

Properties

Property Type Description
answerChoices String collection Answer choices when answerInputType is singleChoice or multiChoice.
answerInputType virtualEventRegistrationQuestionAnswerInputType Input type of the registration question answer.
displayName String Display name of the registration question.
id String Unique identifier of the registration question. Inherited from entity.
isRequired Boolean Indicates whether the question is required to answer. Default value is false.

virtualEventRegistrationQuestionAnswerInputType values

Value Description
text The registration question accepts single-line text.
multilineText The registration question accepts multi-line text.
singleChoice The registration question accepts one answer from a list of options.
multiChoice The registration question accepts more than one answer from a list of options.
boolean The registration question accepts a yes, or no answer.
unknownFutureValue Evolvable enumeration sentinel value. Don't use.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.virtualEventRegistrationQuestion",
  "answerChoices": [
    "String"
  ],
  "answerInputType": "String",
  "displayName": "String",  
  "id": "String (identifier)",
  "isRequired": "Boolean"
}