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