Package com.microsoft.graph.models
Class Workbook
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.Workbook
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Workbook.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Application.The Comments.The Functions.The Names.The Operations.The Tables.The Worksheets. -
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
-
application
@SerializedName(value="application", alternate="Application") @Expose @Nullable public WorkbookApplication applicationThe Application. -
comments
@SerializedName(value="comments", alternate="Comments") @Expose @Nullable public WorkbookCommentCollectionPage commentsThe Comments. -
functions
@SerializedName(value="functions", alternate="Functions") @Expose @Nullable public WorkbookFunctions functionsThe Functions. -
names
@SerializedName(value="names", alternate="Names") @Expose @Nullable public WorkbookNamedItemCollectionPage namesThe Names. Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. -
operations
@SerializedName(value="operations", alternate="Operations") @Expose @Nullable public WorkbookOperationCollectionPage operationsThe Operations. The status of Workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. Nullable. -
tables
@SerializedName(value="tables", alternate="Tables") @Expose @Nullable public WorkbookTableCollectionPage tablesThe Tables. Represents a collection of tables associated with the workbook. Read-only. -
worksheets
@SerializedName(value="worksheets", alternate="Worksheets") @Expose @Nullable public WorkbookWorksheetCollectionPage worksheetsThe Worksheets. Represents a collection of worksheets associated with the workbook. Read-only.
-
-
Constructor Details
-
Workbook
public Workbook()
-
-
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
-