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