Package com.microsoft.graph.requests
Class NotebookCollectionPage
java.lang.Object
com.microsoft.graph.http.BaseCollectionPage<Notebook,NotebookCollectionRequestBuilder>
com.microsoft.graph.requests.NotebookCollectionPage
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class NotebookCollectionPage
extends com.microsoft.graph.http.BaseCollectionPage<Notebook,NotebookCollectionRequestBuilder>
The class for the Notebook Collection Page.
-
Constructor Summary
ConstructorsConstructorDescriptionNotebookCollectionPage(NotebookCollectionResponse response, NotebookCollectionRequestBuilder builder) A collection page for NotebookNotebookCollectionPage(List<Notebook> pageContents, NotebookCollectionRequestBuilder nextRequestBuilder) Creates the collection page for Notebook -
Method Summary
Methods inherited from class com.microsoft.graph.http.BaseCollectionPage
additionalDataManager, getCount, getCurrentPage, getNextPage, setRawObject
-
Constructor Details
-
NotebookCollectionPage
public NotebookCollectionPage(@Nonnull NotebookCollectionResponse response, @Nonnull NotebookCollectionRequestBuilder builder) A collection page for Notebook- Parameters:
response- the serialized NotebookCollectionResponse from the servicebuilder- the request builder for the next collection page
-
NotebookCollectionPage
public NotebookCollectionPage(@Nonnull List<Notebook> pageContents, @Nullable NotebookCollectionRequestBuilder nextRequestBuilder) Creates the collection page for Notebook- Parameters:
pageContents- the contents of this pagenextRequestBuilder- the request builder for the next page
-