com.microsoft.graph.generated.models.OnenotePatchContentCommand Maven / Gradle / Ivy
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 OnenotePatchContentCommand implements AdditionalDataHolder, BackedModel, Parsable {
/**
* Stores model information.
*/
@jakarta.annotation.Nonnull
protected BackingStore backingStore;
/**
* Instantiates a new {@link OnenotePatchContentCommand} and sets the default values.
*/
public OnenotePatchContentCommand() {
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 OnenotePatchContentCommand}
*/
@jakarta.annotation.Nonnull
public static OnenotePatchContentCommand createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new OnenotePatchContentCommand();
}
/**
* Gets the action property value. The action property
* @return a {@link OnenotePatchActionType}
*/
@jakarta.annotation.Nullable
public OnenotePatchActionType getAction() {
return this.backingStore.get("action");
}
/**
* 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 backingStore property value. Stores model information.
* @return a {@link BackingStore}
*/
@jakarta.annotation.Nonnull
public BackingStore getBackingStore() {
return this.backingStore;
}
/**
* Gets the content property value. A string of well-formed HTML to add to the page, and any image or file binary data. If the content contains binary data, the request must be sent using the multipart/form-data content type with a 'Commands' part.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getContent() {
return this.backingStore.get("content");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(5);
deserializerMap.put("action", (n) -> { this.setAction(n.getEnumValue(OnenotePatchActionType::forValue)); });
deserializerMap.put("content", (n) -> { this.setContent(n.getStringValue()); });
deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
deserializerMap.put("position", (n) -> { this.setPosition(n.getEnumValue(OnenotePatchInsertPosition::forValue)); });
deserializerMap.put("target", (n) -> { this.setTarget(n.getStringValue()); });
return deserializerMap;
}
/**
* 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 position property value. The location to add the supplied content, relative to the target element. The possible values are: after (default) or before.
* @return a {@link OnenotePatchInsertPosition}
*/
@jakarta.annotation.Nullable
public OnenotePatchInsertPosition getPosition() {
return this.backingStore.get("position");
}
/**
* Gets the target property value. The element to update. Must be the # or the generated of the element, or the body or title keyword.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getTarget() {
return this.backingStore.get("target");
}
/**
* 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.writeEnumValue("action", this.getAction());
writer.writeStringValue("content", this.getContent());
writer.writeStringValue("@odata.type", this.getOdataType());
writer.writeEnumValue("position", this.getPosition());
writer.writeStringValue("target", this.getTarget());
writer.writeAdditionalData(this.getAdditionalData());
}
/**
* Sets the action property value. The action property
* @param value Value to set for the action property.
*/
public void setAction(@jakarta.annotation.Nullable final OnenotePatchActionType value) {
this.backingStore.set("action", 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 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 content property value. A string of well-formed HTML to add to the page, and any image or file binary data. If the content contains binary data, the request must be sent using the multipart/form-data content type with a 'Commands' part.
* @param value Value to set for the content property.
*/
public void setContent(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("content", 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 position property value. The location to add the supplied content, relative to the target element. The possible values are: after (default) or before.
* @param value Value to set for the position property.
*/
public void setPosition(@jakarta.annotation.Nullable final OnenotePatchInsertPosition value) {
this.backingStore.set("position", value);
}
/**
* Sets the target property value. The element to update. Must be the # or the generated of the element, or the body or title keyword.
* @param value Value to set for the target property.
*/
public void setTarget(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("target", value);
}
}