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