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