com.microsoft.graph.beta.generated.models.SkillProficiency Maven / Gradle / Ivy
package com.microsoft.graph.beta.models;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class SkillProficiency extends ItemFacet implements Parsable {
/**
* Instantiates a new {@link SkillProficiency} and sets the default values.
*/
public SkillProficiency() {
super();
this.setOdataType("#microsoft.graph.skillProficiency");
}
/**
* 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 SkillProficiency}
*/
@jakarta.annotation.Nonnull
public static SkillProficiency createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new SkillProficiency();
}
/**
* Gets the categories property value. Contains categories a user has associated with the skill (for example, personal, professional, hobby).
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getCategories() {
return this.backingStore.get("categories");
}
/**
* Gets the collaborationTags property value. Contains experience scenario tags a user has associated with the interest. Allowed values in the collection are: askMeAbout, ableToMentor, wantsToLearn, wantsToImprove.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getCollaborationTags() {
return this.backingStore.get("collaborationTags");
}
/**
* Gets the displayName property value. Contains a friendly name for the skill.
* @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>(super.getFieldDeserializers());
deserializerMap.put("categories", (n) -> { this.setCategories(n.getCollectionOfPrimitiveValues(String.class)); });
deserializerMap.put("collaborationTags", (n) -> { this.setCollaborationTags(n.getCollectionOfPrimitiveValues(String.class)); });
deserializerMap.put("displayName", (n) -> { this.setDisplayName(n.getStringValue()); });
deserializerMap.put("proficiency", (n) -> { this.setProficiency(n.getEnumValue(SkillProficiencyLevel::forValue)); });
deserializerMap.put("thumbnailUrl", (n) -> { this.setThumbnailUrl(n.getStringValue()); });
deserializerMap.put("webUrl", (n) -> { this.setWebUrl(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the proficiency property value. Detail of the users proficiency with this skill. Possible values are: elementary, limitedWorking, generalProfessional, advancedProfessional, expert, unknownFutureValue.
* @return a {@link SkillProficiencyLevel}
*/
@jakarta.annotation.Nullable
public SkillProficiencyLevel getProficiency() {
return this.backingStore.get("proficiency");
}
/**
* Gets the thumbnailUrl property value. The thumbnailUrl property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getThumbnailUrl() {
return this.backingStore.get("thumbnailUrl");
}
/**
* Gets the webUrl property value. Contains a link to an information source about the skill.
* @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);
super.serialize(writer);
writer.writeCollectionOfPrimitiveValues("categories", this.getCategories());
writer.writeCollectionOfPrimitiveValues("collaborationTags", this.getCollaborationTags());
writer.writeStringValue("displayName", this.getDisplayName());
writer.writeEnumValue("proficiency", this.getProficiency());
writer.writeStringValue("thumbnailUrl", this.getThumbnailUrl());
writer.writeStringValue("webUrl", this.getWebUrl());
}
/**
* Sets the categories property value. Contains categories a user has associated with the skill (for example, personal, professional, hobby).
* @param value Value to set for the categories property.
*/
public void setCategories(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("categories", value);
}
/**
* Sets the collaborationTags property value. Contains experience scenario tags a user has associated with the interest. Allowed values in the collection are: askMeAbout, ableToMentor, wantsToLearn, wantsToImprove.
* @param value Value to set for the collaborationTags property.
*/
public void setCollaborationTags(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("collaborationTags", value);
}
/**
* Sets the displayName property value. Contains a friendly name for the skill.
* @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 proficiency property value. Detail of the users proficiency with this skill. Possible values are: elementary, limitedWorking, generalProfessional, advancedProfessional, expert, unknownFutureValue.
* @param value Value to set for the proficiency property.
*/
public void setProficiency(@jakarta.annotation.Nullable final SkillProficiencyLevel value) {
this.backingStore.set("proficiency", value);
}
/**
* Sets the thumbnailUrl property value. The thumbnailUrl property
* @param value Value to set for the thumbnailUrl property.
*/
public void setThumbnailUrl(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("thumbnailUrl", value);
}
/**
* Sets the webUrl property value. Contains a link to an information source about the skill.
* @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