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