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