com.microsoft.graph.beta.generated.models.EducationalActivityDetail Maven / Gradle / Ivy
package com.microsoft.graph.beta.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 EducationalActivityDetail implements AdditionalDataHolder, BackedModel, Parsable {
/**
* Stores model information.
*/
@jakarta.annotation.Nonnull
protected BackingStore backingStore;
/**
* Instantiates a new {@link EducationalActivityDetail} and sets the default values.
*/
public EducationalActivityDetail() {
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 EducationalActivityDetail}
*/
@jakarta.annotation.Nonnull
public static EducationalActivityDetail createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new EducationalActivityDetail();
}
/**
* Gets the abbreviation property value. Shortened name of the degree or program (example: PhD, MBA)
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getAbbreviation() {
return this.backingStore.get("abbreviation");
}
/**
* Gets the activities property value. Extracurricular activities undertaken alongside the program.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getActivities() {
return this.backingStore.get("activities");
}
/**
* 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 awards property value. Any awards or honors associated with the program.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getAwards() {
return this.backingStore.get("awards");
}
/**
* Gets the backingStore property value. Stores model information.
* @return a {@link BackingStore}
*/
@jakarta.annotation.Nonnull
public BackingStore getBackingStore() {
return this.backingStore;
}
/**
* Gets the description property value. Short description of the program provided by the user.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDescription() {
return this.backingStore.get("description");
}
/**
* Gets the displayName property value. Long-form name of the program that the user has provided.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDisplayName() {
return this.backingStore.get("displayName");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(10);
deserializerMap.put("abbreviation", (n) -> { this.setAbbreviation(n.getStringValue()); });
deserializerMap.put("activities", (n) -> { this.setActivities(n.getCollectionOfPrimitiveValues(String.class)); });
deserializerMap.put("awards", (n) -> { this.setAwards(n.getCollectionOfPrimitiveValues(String.class)); });
deserializerMap.put("description", (n) -> { this.setDescription(n.getStringValue()); });
deserializerMap.put("displayName", (n) -> { this.setDisplayName(n.getStringValue()); });
deserializerMap.put("fieldsOfStudy", (n) -> { this.setFieldsOfStudy(n.getCollectionOfPrimitiveValues(String.class)); });
deserializerMap.put("grade", (n) -> { this.setGrade(n.getStringValue()); });
deserializerMap.put("notes", (n) -> { this.setNotes(n.getStringValue()); });
deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
deserializerMap.put("webUrl", (n) -> { this.setWebUrl(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the fieldsOfStudy property value. Majors and minors associated with the program. (if applicable)
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getFieldsOfStudy() {
return this.backingStore.get("fieldsOfStudy");
}
/**
* Gets the grade property value. The final grade, class, GPA or score.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getGrade() {
return this.backingStore.get("grade");
}
/**
* Gets the notes property value. Additional notes the user has provided.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getNotes() {
return this.backingStore.get("notes");
}
/**
* 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 webUrl property value. Link to the degree or program page.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getWebUrl() {
return this.backingStore.get("webUrl");
}
/**
* 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("abbreviation", this.getAbbreviation());
writer.writeCollectionOfPrimitiveValues("activities", this.getActivities());
writer.writeCollectionOfPrimitiveValues("awards", this.getAwards());
writer.writeStringValue("description", this.getDescription());
writer.writeStringValue("displayName", this.getDisplayName());
writer.writeCollectionOfPrimitiveValues("fieldsOfStudy", this.getFieldsOfStudy());
writer.writeStringValue("grade", this.getGrade());
writer.writeStringValue("notes", this.getNotes());
writer.writeStringValue("@odata.type", this.getOdataType());
writer.writeStringValue("webUrl", this.getWebUrl());
writer.writeAdditionalData(this.getAdditionalData());
}
/**
* Sets the abbreviation property value. Shortened name of the degree or program (example: PhD, MBA)
* @param value Value to set for the abbreviation property.
*/
public void setAbbreviation(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("abbreviation", value);
}
/**
* Sets the activities property value. Extracurricular activities undertaken alongside the program.
* @param value Value to set for the activities property.
*/
public void setActivities(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("activities", value);
}
/**
* 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 awards property value. Any awards or honors associated with the program.
* @param value Value to set for the awards property.
*/
public void setAwards(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("awards", 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 description property value. Short description of the program provided by the user.
* @param value Value to set for the description property.
*/
public void setDescription(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("description", value);
}
/**
* Sets the displayName property value. Long-form name of the program that the user has provided.
* @param value Value to set for the displayName property.
*/
public void setDisplayName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("displayName", value);
}
/**
* Sets the fieldsOfStudy property value. Majors and minors associated with the program. (if applicable)
* @param value Value to set for the fieldsOfStudy property.
*/
public void setFieldsOfStudy(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("fieldsOfStudy", value);
}
/**
* Sets the grade property value. The final grade, class, GPA or score.
* @param value Value to set for the grade property.
*/
public void setGrade(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("grade", value);
}
/**
* Sets the notes property value. Additional notes the user has provided.
* @param value Value to set for the notes property.
*/
public void setNotes(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("notes", 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 webUrl property value. Link to the degree or program page.
* @param value Value to set for the webUrl property.
*/
public void setWebUrl(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("webUrl", value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy