com.microsoft.graph.generated.models.VisualInfo 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 VisualInfo implements AdditionalDataHolder, BackedModel, Parsable {
/**
* Stores model information.
*/
@jakarta.annotation.Nonnull
protected BackingStore backingStore;
/**
* Instantiates a new {@link VisualInfo} and sets the default values.
*/
public VisualInfo() {
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 VisualInfo}
*/
@jakarta.annotation.Nonnull
public static VisualInfo createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new VisualInfo();
}
/**
* 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 attribution property value. Optional. JSON object used to represent an icon which represents the application used to generate the activity
* @return a {@link ImageInfo}
*/
@jakarta.annotation.Nullable
public ImageInfo getAttribution() {
return this.backingStore.get("attribution");
}
/**
* Gets the backgroundColor property value. Optional. Background color used to render the activity in the UI - brand color for the application source of the activity. Must be a valid hex color
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getBackgroundColor() {
return this.backingStore.get("backgroundColor");
}
/**
* 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. Optional. Custom piece of data - JSON object used to provide custom content to render the activity in the Windows Shell UI
* @return a {@link Json}
*/
@jakarta.annotation.Nullable
public Json getContent() {
return this.backingStore.get("content");
}
/**
* Gets the description property value. Optional. Longer text description of the user's unique activity (example: document name, first sentence, and/or metadata)
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDescription() {
return this.backingStore.get("description");
}
/**
* Gets the displayText property value. Required. Short text description of the user's unique activity (for example, document name in cases where an activity refers to document creation)
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDisplayText() {
return this.backingStore.get("displayText");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(6);
deserializerMap.put("attribution", (n) -> { this.setAttribution(n.getObjectValue(ImageInfo::createFromDiscriminatorValue)); });
deserializerMap.put("backgroundColor", (n) -> { this.setBackgroundColor(n.getStringValue()); });
deserializerMap.put("content", (n) -> { this.setContent(n.getObjectValue(Json::createFromDiscriminatorValue)); });
deserializerMap.put("description", (n) -> { this.setDescription(n.getStringValue()); });
deserializerMap.put("displayText", (n) -> { this.setDisplayText(n.getStringValue()); });
deserializerMap.put("@odata.type", (n) -> { this.setOdataType(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");
}
/**
* 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.writeObjectValue("attribution", this.getAttribution());
writer.writeStringValue("backgroundColor", this.getBackgroundColor());
writer.writeObjectValue("content", this.getContent());
writer.writeStringValue("description", this.getDescription());
writer.writeStringValue("displayText", this.getDisplayText());
writer.writeStringValue("@odata.type", this.getOdataType());
writer.writeAdditionalData(this.getAdditionalData());
}
/**
* 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 attribution property value. Optional. JSON object used to represent an icon which represents the application used to generate the activity
* @param value Value to set for the attribution property.
*/
public void setAttribution(@jakarta.annotation.Nullable final ImageInfo value) {
this.backingStore.set("attribution", value);
}
/**
* Sets the backgroundColor property value. Optional. Background color used to render the activity in the UI - brand color for the application source of the activity. Must be a valid hex color
* @param value Value to set for the backgroundColor property.
*/
public void setBackgroundColor(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("backgroundColor", 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. Optional. Custom piece of data - JSON object used to provide custom content to render the activity in the Windows Shell UI
* @param value Value to set for the content property.
*/
public void setContent(@jakarta.annotation.Nullable final Json value) {
this.backingStore.set("content", value);
}
/**
* Sets the description property value. Optional. Longer text description of the user's unique activity (example: document name, first sentence, and/or metadata)
* @param value Value to set for the description property.
*/
public void setDescription(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("description", value);
}
/**
* Sets the displayText property value. Required. Short text description of the user's unique activity (for example, document name in cases where an activity refers to document creation)
* @param value Value to set for the displayText property.
*/
public void setDisplayText(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("displayText", 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);
}
}