Package so.prelude.sdk.services.async
Interface TransactionalServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface TransactionalServiceAsync.WithRawResponse
A view of TransactionalServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract TransactionalServiceAsync.WithRawResponse
withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied. CompletableFuture<HttpResponseFor<TransactionalSendResponse>>
send(TransactionalSendParams params)
Returns a raw HTTP response for post /v2/transactional
, but is otherwise the same as TransactionalServiceAsync.send.abstract CompletableFuture<HttpResponseFor<TransactionalSendResponse>>
send(TransactionalSendParams params, RequestOptions requestOptions)
-
-
Method Detail
-
withOptions
abstract TransactionalServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
send
CompletableFuture<HttpResponseFor<TransactionalSendResponse>> send(TransactionalSendParams params)
Returns a raw HTTP response for
post /v2/transactional
, but is otherwise the same as TransactionalServiceAsync.send.
-
send
abstract CompletableFuture<HttpResponseFor<TransactionalSendResponse>> send(TransactionalSendParams params, RequestOptions requestOptions)
-
-
-
-