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