Package com.microsoft.graph.models
Class VirtualEventRegistrationQuestionAnswer
java.lang.Object
com.microsoft.graph.models.VirtualEventRegistrationQuestionAnswer
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class VirtualEventRegistrationQuestionAnswer
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Virtual Event Registration Question Answer.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Boolean Value.The Display Name.The Multi Choice Values.the OData type of the object as returned by the serviceThe Question Id.The Value. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
booleanValue
@SerializedName(value="booleanValue", alternate="BooleanValue") @Expose @Nullable public Boolean booleanValueThe Boolean Value. Boolean answer of the virtual event registration question. Only appears when answerInputType is boolean. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. Display name of the registration question. -
multiChoiceValues
@SerializedName(value="multiChoiceValues", alternate="MultiChoiceValues") @Expose @Nullable public List<String> multiChoiceValuesThe Multi Choice Values. Collection of text answer of the virtual event registration question. Only appears when answerInputType is multiChoice. -
questionId
@SerializedName(value="questionId", alternate="QuestionId") @Expose @Nullable public String questionIdThe Question Id. id of the virtual event registration question. -
value
The Value. Text answer of the virtual event registration question. Appears when answerInputType is text, multilineText or singleChoice.
-
-
Constructor Details
-
VirtualEventRegistrationQuestionAnswer
public VirtualEventRegistrationQuestionAnswer()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-