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