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