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