com.microsoft.graph.models.VisualInfo Maven / Gradle / Ivy
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.models.ImageInfo;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Visual Info.
*/
public class VisualInfo implements IJsonBackedObject {
/** the OData type of the object as returned by the service */
@SerializedName("@odata.type")
@Expose
@Nullable
public String oDataType;
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
@Override
@Nonnull
public final AdditionalDataManager additionalDataManager() {
return additionalDataManager;
}
/**
* The Attribution.
* Optional. JSON object used to represent an icon which represents the application used to generate the activity
*/
@SerializedName(value = "attribution", alternate = {"Attribution"})
@Expose
@Nullable
public ImageInfo attribution;
/**
* The Background Color.
* 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
*/
@SerializedName(value = "backgroundColor", alternate = {"BackgroundColor"})
@Expose
@Nullable
public String backgroundColor;
/**
* The Content.
* Optional. Custom piece of data - JSON object used to provide custom content to render the activity in the Windows Shell UI
*/
@SerializedName(value = "content", alternate = {"Content"})
@Expose
@Nullable
public com.google.gson.JsonElement content;
/**
* The Description.
* Optional. Longer text description of the user's unique activity (example: document name, first sentence, and/or metadata)
*/
@SerializedName(value = "description", alternate = {"Description"})
@Expose
@Nullable
public String description;
/**
* The Display Text.
* Required. Short text description of the user's unique activity (for example, document name in cases where an activity refers to document creation)
*/
@SerializedName(value = "displayText", alternate = {"DisplayText"})
@Expose
@Nullable
public String displayText;
/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
}
}