Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import com.microsoft.kiota.store.BackedModel;
import com.microsoft.kiota.store.BackingStore;
import com.microsoft.kiota.store.BackingStoreFactorySingleton;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class BookingQuestionAnswer implements AdditionalDataHolder, BackedModel, Parsable {
/**
* Stores model information.
*/
@jakarta.annotation.Nonnull
protected BackingStore backingStore;
/**
* Instantiates a new {@link BookingQuestionAnswer} and sets the default values.
*/
public BookingQuestionAnswer() {
this.backingStore = BackingStoreFactorySingleton.instance.createBackingStore();
this.setAdditionalData(new HashMap<>());
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link BookingQuestionAnswer}
*/
@jakarta.annotation.Nonnull
public static BookingQuestionAnswer createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new BookingQuestionAnswer();
}
/**
* Gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
* @return a {@link Map}
*/
@jakarta.annotation.Nonnull
public Map getAdditionalData() {
Map value = this.backingStore.get("additionalData");
if(value == null) {
value = new HashMap<>();
this.setAdditionalData(value);
}
return value;
}
/**
* Gets the answer property value. The answer given by the user in case the answerInputType is text.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getAnswer() {
return this.backingStore.get("answer");
}
/**
* Gets the answerInputType property value. The expected answer type. The possible values are: text, radioButton, unknownFutureValue.
* @return a {@link AnswerInputType}
*/
@jakarta.annotation.Nullable
public AnswerInputType getAnswerInputType() {
return this.backingStore.get("answerInputType");
}
/**
* Gets the answerOptions property value. In case the answerInputType is radioButton, this will consists of a list of possible answer values.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getAnswerOptions() {
return this.backingStore.get("answerOptions");
}
/**
* Gets the backingStore property value. Stores model information.
* @return a {@link BackingStore}
*/
@jakarta.annotation.Nonnull
public BackingStore getBackingStore() {
return this.backingStore;
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(8);
deserializerMap.put("answer", (n) -> { this.setAnswer(n.getStringValue()); });
deserializerMap.put("answerInputType", (n) -> { this.setAnswerInputType(n.getEnumValue(AnswerInputType::forValue)); });
deserializerMap.put("answerOptions", (n) -> { this.setAnswerOptions(n.getCollectionOfPrimitiveValues(String.class)); });
deserializerMap.put("isRequired", (n) -> { this.setIsRequired(n.getBooleanValue()); });
deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
deserializerMap.put("question", (n) -> { this.setQuestion(n.getStringValue()); });
deserializerMap.put("questionId", (n) -> { this.setQuestionId(n.getStringValue()); });
deserializerMap.put("selectedOptions", (n) -> { this.setSelectedOptions(n.getCollectionOfPrimitiveValues(String.class)); });
return deserializerMap;
}
/**
* Gets the isRequired property value. Indicates whether it is mandatory to answer the custom question.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getIsRequired() {
return this.backingStore.get("isRequired");
}
/**
* Gets the @odata.type property value. The OdataType property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getOdataType() {
return this.backingStore.get("odataType");
}
/**
* Gets the question property value. The question.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getQuestion() {
return this.backingStore.get("question");
}
/**
* Gets the questionId property value. The ID of the custom question.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getQuestionId() {
return this.backingStore.get("questionId");
}
/**
* Gets the selectedOptions property value. The answers selected by the user.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getSelectedOptions() {
return this.backingStore.get("selectedOptions");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
writer.writeStringValue("answer", this.getAnswer());
writer.writeEnumValue("answerInputType", this.getAnswerInputType());
writer.writeCollectionOfPrimitiveValues("answerOptions", this.getAnswerOptions());
writer.writeBooleanValue("isRequired", this.getIsRequired());
writer.writeStringValue("@odata.type", this.getOdataType());
writer.writeStringValue("question", this.getQuestion());
writer.writeStringValue("questionId", this.getQuestionId());
writer.writeCollectionOfPrimitiveValues("selectedOptions", this.getSelectedOptions());
writer.writeAdditionalData(this.getAdditionalData());
}
/**
* Sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
* @param value Value to set for the AdditionalData property.
*/
public void setAdditionalData(@jakarta.annotation.Nullable final Map value) {
this.backingStore.set("additionalData", value);
}
/**
* Sets the answer property value. The answer given by the user in case the answerInputType is text.
* @param value Value to set for the answer property.
*/
public void setAnswer(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("answer", value);
}
/**
* Sets the answerInputType property value. The expected answer type. The possible values are: text, radioButton, unknownFutureValue.
* @param value Value to set for the answerInputType property.
*/
public void setAnswerInputType(@jakarta.annotation.Nullable final AnswerInputType value) {
this.backingStore.set("answerInputType", value);
}
/**
* Sets the answerOptions property value. In case the answerInputType is radioButton, this will consists of a list of possible answer values.
* @param value Value to set for the answerOptions property.
*/
public void setAnswerOptions(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("answerOptions", value);
}
/**
* Sets the backingStore property value. Stores model information.
* @param value Value to set for the backingStore property.
*/
public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value) {
Objects.requireNonNull(value);
this.backingStore = value;
}
/**
* Sets the isRequired property value. Indicates whether it is mandatory to answer the custom question.
* @param value Value to set for the isRequired property.
*/
public void setIsRequired(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("isRequired", value);
}
/**
* Sets the @odata.type property value. The OdataType property
* @param value Value to set for the @odata.type property.
*/
public void setOdataType(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("odataType", value);
}
/**
* Sets the question property value. The question.
* @param value Value to set for the question property.
*/
public void setQuestion(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("question", value);
}
/**
* Sets the questionId property value. The ID of the custom question.
* @param value Value to set for the questionId property.
*/
public void setQuestionId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("questionId", value);
}
/**
* Sets the selectedOptions property value. The answers selected by the user.
* @param value Value to set for the selectedOptions property.
*/
public void setSelectedOptions(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("selectedOptions", value);
}
}