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