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