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