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