Package com.microsoft.graph.models
Class WorkbookNamedItem
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.WorkbookNamedItem
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class WorkbookNamedItem
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Workbook Named Item.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Comment.The Name.The Scope.The Type.com.google.gson.JsonElement
The Value.The Visible.The Worksheet. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
comment
The Comment. Represents the comment associated with this name. -
name
The Name. The name of the object. Read-only. -
scope
The Scope. Indicates whether the name is scoped to the workbook or to a specific worksheet. Read-only. -
type
The Type. Indicates what type of reference is associated with the name. The possible values are: String, Integer, Double, Boolean, Range. Read-only. -
value
@SerializedName(value="value", alternate="Value") @Expose @Nullable public com.google.gson.JsonElement valueThe Value. Represents the formula that the name is defined to refer to. E.g. =Sheet14!$B$2:$H$12, =4.75, etc. Read-only. -
visible
The Visible. Specifies whether the object is visible or not. -
worksheet
@SerializedName(value="worksheet", alternate="Worksheet") @Expose @Nullable public WorkbookWorksheet worksheetThe Worksheet. Returns the worksheet on which the named item is scoped to. Available only if the item is scoped to the worksheet. Read-only.
-
-
Constructor Details
-
WorkbookNamedItem
public WorkbookNamedItem()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-