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