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