Package com.courier.services.async
Interface NotificationServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface NotificationServiceAsync.WithRawResponseA view of NotificationServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract NotificationServiceAsync.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 DraftServiceAsync.WithRawResponse draft()
-
checks
abstract CheckServiceAsync.WithRawResponse checks()
-
list
CompletableFuture<HttpResponseFor<NotificationListResponse>> list()
Returns a raw HTTP response for
get /notifications, but is otherwise the same as NotificationServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<NotificationListResponse>> list(NotificationListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<NotificationListResponse>> list(NotificationListParams params)
-
list
CompletableFuture<HttpResponseFor<NotificationListResponse>> list(RequestOptions requestOptions)
-
retrieveContent
CompletableFuture<HttpResponseFor<NotificationGetContent>> retrieveContent(String id)
Returns a raw HTTP response for
get /notifications/{id}/content, but is otherwise the same as NotificationServiceAsync.retrieveContent.
-
retrieveContent
CompletableFuture<HttpResponseFor<NotificationGetContent>> retrieveContent(String id, NotificationRetrieveContentParams params, RequestOptions requestOptions)
-
retrieveContent
CompletableFuture<HttpResponseFor<NotificationGetContent>> retrieveContent(String id, NotificationRetrieveContentParams params)
-
retrieveContent
abstract CompletableFuture<HttpResponseFor<NotificationGetContent>> retrieveContent(NotificationRetrieveContentParams params, RequestOptions requestOptions)
-
retrieveContent
CompletableFuture<HttpResponseFor<NotificationGetContent>> retrieveContent(NotificationRetrieveContentParams params)
-
retrieveContent
CompletableFuture<HttpResponseFor<NotificationGetContent>> retrieveContent(String id, RequestOptions requestOptions)
-
-
-
-