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