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