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