com.microsoft.graph.generated.models.Onenote Maven / Gradle / Ivy
package com.microsoft.graph.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 Onenote extends Entity implements Parsable {
/**
* Instantiates a new {@link Onenote} and sets the default values.
*/
public Onenote() {
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 Onenote}
*/
@jakarta.annotation.Nonnull
public static Onenote createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new Onenote();
}
/**
* 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("notebooks", (n) -> { this.setNotebooks(n.getCollectionOfObjectValues(Notebook::createFromDiscriminatorValue)); });
deserializerMap.put("operations", (n) -> { this.setOperations(n.getCollectionOfObjectValues(OnenoteOperation::createFromDiscriminatorValue)); });
deserializerMap.put("pages", (n) -> { this.setPages(n.getCollectionOfObjectValues(OnenotePage::createFromDiscriminatorValue)); });
deserializerMap.put("resources", (n) -> { this.setResources(n.getCollectionOfObjectValues(OnenoteResource::createFromDiscriminatorValue)); });
deserializerMap.put("sectionGroups", (n) -> { this.setSectionGroups(n.getCollectionOfObjectValues(SectionGroup::createFromDiscriminatorValue)); });
deserializerMap.put("sections", (n) -> { this.setSections(n.getCollectionOfObjectValues(OnenoteSection::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the notebooks property value. The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getNotebooks() {
return this.backingStore.get("notebooks");
}
/**
* Gets the operations property value. The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getOperations() {
return this.backingStore.get("operations");
}
/**
* Gets the pages property value. The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getPages() {
return this.backingStore.get("pages");
}
/**
* Gets the resources property value. The image and other file resources in OneNote pages. Getting a resources collection isn't supported, but you can get the binary content of a specific resource. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getResources() {
return this.backingStore.get("resources");
}
/**
* Gets the sectionGroups property value. The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getSectionGroups() {
return this.backingStore.get("sectionGroups");
}
/**
* Gets the sections property value. The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getSections() {
return this.backingStore.get("sections");
}
/**
* 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("notebooks", this.getNotebooks());
writer.writeCollectionOfObjectValues("operations", this.getOperations());
writer.writeCollectionOfObjectValues("pages", this.getPages());
writer.writeCollectionOfObjectValues("resources", this.getResources());
writer.writeCollectionOfObjectValues("sectionGroups", this.getSectionGroups());
writer.writeCollectionOfObjectValues("sections", this.getSections());
}
/**
* Sets the notebooks property value. The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable.
* @param value Value to set for the notebooks property.
*/
public void setNotebooks(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("notebooks", value);
}
/**
* Sets the operations property value. The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.
* @param value Value to set for the operations property.
*/
public void setOperations(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("operations", value);
}
/**
* Sets the pages property value. The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable.
* @param value Value to set for the pages property.
*/
public void setPages(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("pages", value);
}
/**
* Sets the resources property value. The image and other file resources in OneNote pages. Getting a resources collection isn't supported, but you can get the binary content of a specific resource. Read-only. Nullable.
* @param value Value to set for the resources property.
*/
public void setResources(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("resources", value);
}
/**
* Sets the sectionGroups property value. The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable.
* @param value Value to set for the sectionGroups property.
*/
public void setSectionGroups(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("sectionGroups", value);
}
/**
* Sets the sections property value. The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable.
* @param value Value to set for the sections property.
*/
public void setSections(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("sections", value);
}
}