com.microsoft.graph.generated.models.BaseSitePage 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 BaseSitePage extends BaseItem implements Parsable {
/**
* Instantiates a new {@link BaseSitePage} and sets the default values.
*/
public BaseSitePage() {
super();
this.setOdataType("#microsoft.graph.baseSitePage");
}
/**
* 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 BaseSitePage}
*/
@jakarta.annotation.Nonnull
public static BaseSitePage createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
final ParseNode mappingValueNode = parseNode.getChildNode("@odata.type");
if (mappingValueNode != null) {
final String mappingValue = mappingValueNode.getStringValue();
switch (mappingValue) {
case "#microsoft.graph.sitePage": return new SitePage();
}
}
return new BaseSitePage();
}
/**
* 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("pageLayout", (n) -> { this.setPageLayout(n.getEnumValue(PageLayoutType::forValue)); });
deserializerMap.put("publishingState", (n) -> { this.setPublishingState(n.getObjectValue(PublicationFacet::createFromDiscriminatorValue)); });
deserializerMap.put("title", (n) -> { this.setTitle(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the pageLayout property value. The name of the page layout of the page. The possible values are: microsoftReserved, article, home, unknownFutureValue.
* @return a {@link PageLayoutType}
*/
@jakarta.annotation.Nullable
public PageLayoutType getPageLayout() {
return this.backingStore.get("pageLayout");
}
/**
* Gets the publishingState property value. The publishing status and the MM.mm version of the page.
* @return a {@link PublicationFacet}
*/
@jakarta.annotation.Nullable
public PublicationFacet getPublishingState() {
return this.backingStore.get("publishingState");
}
/**
* Gets the title property value. Title of the sitePage.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getTitle() {
return this.backingStore.get("title");
}
/**
* 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.writeEnumValue("pageLayout", this.getPageLayout());
writer.writeObjectValue("publishingState", this.getPublishingState());
writer.writeStringValue("title", this.getTitle());
}
/**
* Sets the pageLayout property value. The name of the page layout of the page. The possible values are: microsoftReserved, article, home, unknownFutureValue.
* @param value Value to set for the pageLayout property.
*/
public void setPageLayout(@jakarta.annotation.Nullable final PageLayoutType value) {
this.backingStore.set("pageLayout", value);
}
/**
* Sets the publishingState property value. The publishing status and the MM.mm version of the page.
* @param value Value to set for the publishingState property.
*/
public void setPublishingState(@jakarta.annotation.Nullable final PublicationFacet value) {
this.backingStore.set("publishingState", value);
}
/**
* Sets the title property value. Title of the sitePage.
* @param value Value to set for the title property.
*/
public void setTitle(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("title", value);
}
}