Package com.microsoft.graph.requests
Class ContactDeltaCollectionPage
java.lang.Object
com.microsoft.graph.http.BaseCollectionPage<T,T2>
com.microsoft.graph.http.DeltaCollectionPage<Contact,ContactDeltaCollectionRequestBuilder>
com.microsoft.graph.requests.ContactDeltaCollectionPage
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class ContactDeltaCollectionPage
extends com.microsoft.graph.http.DeltaCollectionPage<Contact,ContactDeltaCollectionRequestBuilder>
The class for the Contact Delta Collection Page.
-
Field Summary
Fields inherited from class com.microsoft.graph.http.DeltaCollectionPage
deltaLink
-
Constructor Summary
ConstructorsConstructorDescriptionContactDeltaCollectionPage
(ContactDeltaCollectionResponse response, ContactDeltaCollectionRequestBuilder builder) A collection page for Contact.ContactDeltaCollectionPage
(List<Contact> pageContents, ContactDeltaCollectionRequestBuilder nextRequestBuilder) Creates the collection page for ContactDelta -
Method Summary
Methods inherited from class com.microsoft.graph.http.DeltaCollectionPage
deltaLink
Methods inherited from class com.microsoft.graph.http.BaseCollectionPage
additionalDataManager, getCount, getCurrentPage, getNextPage, setRawObject
-
Constructor Details
-
ContactDeltaCollectionPage
public ContactDeltaCollectionPage(@Nonnull ContactDeltaCollectionResponse response, @Nonnull ContactDeltaCollectionRequestBuilder builder) A collection page for Contact.- Parameters:
response
- The serialized ContactDeltaCollectionResponse from the servicebuilder
- The request builder for the next collection page
-
ContactDeltaCollectionPage
public ContactDeltaCollectionPage(@Nonnull List<Contact> pageContents, @Nullable ContactDeltaCollectionRequestBuilder nextRequestBuilder) Creates the collection page for ContactDelta- Parameters:
pageContents
- the contents of this pagenextRequestBuilder
- the request builder for the next page
-