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