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