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