com.microsoft.graph.generated.models.WorkbookChartAreaFormat 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 WorkbookChartAreaFormat extends Entity implements Parsable {
/**
* Instantiates a new {@link WorkbookChartAreaFormat} and sets the default values.
*/
public WorkbookChartAreaFormat() {
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 WorkbookChartAreaFormat}
*/
@jakarta.annotation.Nonnull
public static WorkbookChartAreaFormat createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new WorkbookChartAreaFormat();
}
/**
* 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("fill", (n) -> { this.setFill(n.getObjectValue(WorkbookChartFill::createFromDiscriminatorValue)); });
deserializerMap.put("font", (n) -> { this.setFont(n.getObjectValue(WorkbookChartFont::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the fill property value. Represents the fill format of an object, which includes background formatting information. Read-only.
* @return a {@link WorkbookChartFill}
*/
@jakarta.annotation.Nullable
public WorkbookChartFill getFill() {
return this.backingStore.get("fill");
}
/**
* Gets the font property value. Represents the font attributes (font name, font size, color, etc.) for the current object. Read-only.
* @return a {@link WorkbookChartFont}
*/
@jakarta.annotation.Nullable
public WorkbookChartFont getFont() {
return this.backingStore.get("font");
}
/**
* 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.writeObjectValue("fill", this.getFill());
writer.writeObjectValue("font", this.getFont());
}
/**
* Sets the fill property value. Represents the fill format of an object, which includes background formatting information. Read-only.
* @param value Value to set for the fill property.
*/
public void setFill(@jakarta.annotation.Nullable final WorkbookChartFill value) {
this.backingStore.set("fill", value);
}
/**
* Sets the font property value. Represents the font attributes (font name, font size, color, etc.) for the current object. Read-only.
* @param value Value to set for the font property.
*/
public void setFont(@jakarta.annotation.Nullable final WorkbookChartFont value) {
this.backingStore.set("font", value);
}
}