Package com.courier.services.blocking
Interface NotificationService.WithRawResponse
-
- All Implemented Interfaces:
public interface NotificationService.WithRawResponseA view of NotificationService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract NotificationService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
draft
abstract DraftService.WithRawResponse draft()
-
checks
abstract CheckService.WithRawResponse checks()
-
list
@MustBeClosed() HttpResponseFor<NotificationListResponse> list()
Returns a raw HTTP response for
get /notifications, but is otherwise the same as NotificationService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<NotificationListResponse> list(NotificationListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<NotificationListResponse> list(NotificationListParams params)
-
list
@MustBeClosed() HttpResponseFor<NotificationListResponse> list(RequestOptions requestOptions)
-
retrieveContent
@MustBeClosed() HttpResponseFor<NotificationGetContent> retrieveContent(String id)
Returns a raw HTTP response for
get /notifications/{id}/content, but is otherwise the same as NotificationService.retrieveContent.
-
retrieveContent
@MustBeClosed() HttpResponseFor<NotificationGetContent> retrieveContent(String id, NotificationRetrieveContentParams params, RequestOptions requestOptions)
-
retrieveContent
@MustBeClosed() HttpResponseFor<NotificationGetContent> retrieveContent(String id, NotificationRetrieveContentParams params)
-
retrieveContent
@MustBeClosed() abstract HttpResponseFor<NotificationGetContent> retrieveContent(NotificationRetrieveContentParams params, RequestOptions requestOptions)
-
retrieveContent
@MustBeClosed() HttpResponseFor<NotificationGetContent> retrieveContent(NotificationRetrieveContentParams params)
-
retrieveContent
@MustBeClosed() HttpResponseFor<NotificationGetContent> retrieveContent(String id, RequestOptions requestOptions)
-
-
-
-