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