Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 2.24 KB

File metadata and controls

51 lines (42 loc) · 2.24 KB
title virtualEventRegistrationQuestionAnswer resource type
description Represents an answer or answers to a registration question of a virtual event.
author halleclottey-msft
ms.localizationpriority medium
ms.subservice cloud-communications
doc_type resourcePageType
ms.date 06/12/2024

virtualEventRegistrationQuestionAnswer resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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.

Relationships

None.

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"
}