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