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