com.microsoft.graph.beta.generated.models.OutlookUser 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 OutlookUser extends Entity implements Parsable {
/**
* Instantiates a new {@link OutlookUser} and sets the default values.
*/
public OutlookUser() {
super();
}
/**
* 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 OutlookUser}
*/
@jakarta.annotation.Nonnull
public static OutlookUser createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new OutlookUser();
}
/**
* 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("masterCategories", (n) -> { this.setMasterCategories(n.getCollectionOfObjectValues(OutlookCategory::createFromDiscriminatorValue)); });
deserializerMap.put("taskFolders", (n) -> { this.setTaskFolders(n.getCollectionOfObjectValues(OutlookTaskFolder::createFromDiscriminatorValue)); });
deserializerMap.put("taskGroups", (n) -> { this.setTaskGroups(n.getCollectionOfObjectValues(OutlookTaskGroup::createFromDiscriminatorValue)); });
deserializerMap.put("tasks", (n) -> { this.setTasks(n.getCollectionOfObjectValues(OutlookTask::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the masterCategories property value. A list of categories defined for the user.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getMasterCategories() {
return this.backingStore.get("masterCategories");
}
/**
* Gets the taskFolders property value. The user's Outlook task folders. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getTaskFolders() {
return this.backingStore.get("taskFolders");
}
/**
* Gets the taskGroups property value. The user's Outlook task groups. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getTaskGroups() {
return this.backingStore.get("taskGroups");
}
/**
* Gets the tasks property value. The user's Outlook tasks. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getTasks() {
return this.backingStore.get("tasks");
}
/**
* 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.writeCollectionOfObjectValues("masterCategories", this.getMasterCategories());
writer.writeCollectionOfObjectValues("taskFolders", this.getTaskFolders());
writer.writeCollectionOfObjectValues("taskGroups", this.getTaskGroups());
writer.writeCollectionOfObjectValues("tasks", this.getTasks());
}
/**
* Sets the masterCategories property value. A list of categories defined for the user.
* @param value Value to set for the masterCategories property.
*/
public void setMasterCategories(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("masterCategories", value);
}
/**
* Sets the taskFolders property value. The user's Outlook task folders. Read-only. Nullable.
* @param value Value to set for the taskFolders property.
*/
public void setTaskFolders(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("taskFolders", value);
}
/**
* Sets the taskGroups property value. The user's Outlook task groups. Read-only. Nullable.
* @param value Value to set for the taskGroups property.
*/
public void setTaskGroups(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("taskGroups", value);
}
/**
* Sets the tasks property value. The user's Outlook tasks. Read-only. Nullable.
* @param value Value to set for the tasks property.
*/
public void setTasks(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("tasks", value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy