Package com.microsoft.graph.models
Class OnenotePage
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.OnenoteEntityBaseModel
com.microsoft.graph.models.OnenoteEntitySchemaObjectModel
com.microsoft.graph.models.OnenotePage
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class OnenotePage
extends OnenoteEntitySchemaObjectModel
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Onenote Page.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Content Url.The Created By App Id.The Last Modified Date Time.The Level.The Links.The Order.The Parent Notebook.The Parent Section.The Title.The User Tags.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
-
contentUrl
@SerializedName(value="contentUrl", alternate="ContentUrl") @Expose @Nullable public String contentUrlThe Content Url. The URL for the page's HTML content. Read-only. -
createdByAppId
@SerializedName(value="createdByAppId", alternate="CreatedByAppId") @Expose @Nullable public String createdByAppIdThe Created By App Id. The unique identifier of the application that created the page. Read-only. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. The date and time when the page 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. -
level
The Level. The indentation level of the page. Read-only. -
links
The Links. Links for opening the page. The oneNoteClientURL link opens the page in the OneNote native client if it 's installed. The oneNoteWebUrl link opens the page in OneNote on the web. Read-only. -
order
The Order. The order of the page within its parent section. Read-only. -
title
The Title. The title of the page. -
userTags
@SerializedName(value="userTags", alternate="UserTags") @Expose @Nullable public List<String> userTagsThe User Tags. -
parentNotebook
@SerializedName(value="parentNotebook", alternate="ParentNotebook") @Expose @Nullable public Notebook parentNotebookThe Parent Notebook. The notebook that contains the page. Read-only. -
parentSection
@SerializedName(value="parentSection", alternate="ParentSection") @Expose @Nullable public OnenoteSection parentSectionThe Parent Section. The section that contains the page. Read-only.
-
-
Constructor Details
-
OnenotePage
public OnenotePage()
-
-
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
-