Package com.microsoft.graph.models
Class OnenoteEntityHierarchyModel
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.OnenoteEntityBaseModel
com.microsoft.graph.models.OnenoteEntitySchemaObjectModel
com.microsoft.graph.models.OnenoteEntityHierarchyModel
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
Notebook
,OnenoteSection
,SectionGroup
public class OnenoteEntityHierarchyModel
extends OnenoteEntitySchemaObjectModel
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Onenote Entity Hierarchy Model.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Created By.The Display Name.The Last Modified By.The Last Modified Date Time.Fields inherited from class com.microsoft.graph.models.OnenoteEntitySchemaObjectModel
createdDateTime
Fields inherited from class com.microsoft.graph.models.OnenoteEntityBaseModel
self
-
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
-
createdBy
@SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public IdentitySet createdByThe Created By. Identity of the user, device, and application which created the item. Read-only. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The name of the notebook. -
lastModifiedBy
@SerializedName(value="lastModifiedBy", alternate="LastModifiedBy") @Expose @Nullable public IdentitySet lastModifiedByThe Last Modified By. Identity of the user, device, and application which created the item. Read-only. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
-
-
Constructor Details
-
OnenoteEntityHierarchyModel
public OnenoteEntityHierarchyModel()
-
-
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 classOnenoteEntitySchemaObjectModel
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-