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 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
-
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)
-
-
-
-