Interface BatchService.WithRawResponse
-
- All Implemented Interfaces:
public interface BatchService.WithRawResponseA view of BatchService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
archive
@MustBeClosed() HttpResponseFor<List<Message>> archive(BatchArchiveParams params)
Returns a raw HTTP response for
post /v1/messages/batch/archived, but is otherwise the same as BatchService.archive.
-
archive
@MustBeClosed() abstract HttpResponseFor<List<Message>> archive(BatchArchiveParams params, RequestOptions requestOptions)
-
getContent
@MustBeClosed() HttpResponseFor<List<BatchGetContentResponse>> getContent(BatchGetContentParams params)
Returns a raw HTTP response for
get /v1/messages/batch/content, but is otherwise the same as BatchService.getContent.
-
getContent
@MustBeClosed() abstract HttpResponseFor<List<BatchGetContentResponse>> getContent(BatchGetContentParams params, RequestOptions requestOptions)
-
markAsInteracted
@MustBeClosed() HttpResponseFor<List<Message>> markAsInteracted(BatchMarkAsInteractedParams params)
Returns a raw HTTP response for
post /v1/messages/batch/interacted, but is otherwise the same as BatchService.markAsInteracted.
-
markAsInteracted
@MustBeClosed() abstract HttpResponseFor<List<Message>> markAsInteracted(BatchMarkAsInteractedParams params, RequestOptions requestOptions)
-
markAsRead
@MustBeClosed() HttpResponseFor<List<Message>> markAsRead(BatchMarkAsReadParams params)
Returns a raw HTTP response for
post /v1/messages/batch/read, but is otherwise the same as BatchService.markAsRead.
-
markAsRead
@MustBeClosed() abstract HttpResponseFor<List<Message>> markAsRead(BatchMarkAsReadParams params, RequestOptions requestOptions)
-
markAsSeen
@MustBeClosed() HttpResponseFor<List<Message>> markAsSeen(BatchMarkAsSeenParams params)
Returns a raw HTTP response for
post /v1/messages/batch/seen, but is otherwise the same as BatchService.markAsSeen.
-
markAsSeen
@MustBeClosed() abstract HttpResponseFor<List<Message>> markAsSeen(BatchMarkAsSeenParams params, RequestOptions requestOptions)
-
markAsUnread
@MustBeClosed() HttpResponseFor<List<Message>> markAsUnread(BatchMarkAsUnreadParams params)
Returns a raw HTTP response for
post /v1/messages/batch/unread, but is otherwise the same as BatchService.markAsUnread.
-
markAsUnread
@MustBeClosed() abstract HttpResponseFor<List<Message>> markAsUnread(BatchMarkAsUnreadParams params, RequestOptions requestOptions)
-
markAsUnseen
@MustBeClosed() HttpResponseFor<List<Message>> markAsUnseen(BatchMarkAsUnseenParams params)
Returns a raw HTTP response for
post /v1/messages/batch/unseen, but is otherwise the same as BatchService.markAsUnseen.
-
markAsUnseen
@MustBeClosed() abstract HttpResponseFor<List<Message>> markAsUnseen(BatchMarkAsUnseenParams params, RequestOptions requestOptions)
-
unarchive
@MustBeClosed() HttpResponseFor<List<Message>> unarchive(BatchUnarchiveParams params)
Returns a raw HTTP response for
post /v1/messages/batch/unarchived, but is otherwise the same as BatchService.unarchive.
-
unarchive
@MustBeClosed() abstract HttpResponseFor<List<Message>> unarchive(BatchUnarchiveParams params, RequestOptions requestOptions)
-
-
-
-