Package com.increase.api.services.async
Interface TransactionServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface TransactionServiceAsync.WithRawResponseA view of TransactionServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract TransactionServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<HttpResponseFor<Transaction>> retrieve(String transactionId)
Returns a raw HTTP response for
get /transactions/{transaction_id}, but is otherwise the same as TransactionServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<Transaction>> retrieve(String transactionId, TransactionRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Transaction>> retrieve(String transactionId, TransactionRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<Transaction>> retrieve(TransactionRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Transaction>> retrieve(TransactionRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<Transaction>> retrieve(String transactionId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<TransactionListPageAsync>> list()
Returns a raw HTTP response for
get /transactions, but is otherwise the same as TransactionServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<TransactionListPageAsync>> list(TransactionListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<TransactionListPageAsync>> list(TransactionListParams params)
-
list
CompletableFuture<HttpResponseFor<TransactionListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-