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
Modifier and Type Method Description CompletableFuture<HttpResponseFor<Transaction>>retrieve(TransactionRetrieveParams params)Returns a raw HTTP response for get /transactions/{transaction_id}, but is otherwise the same as TransactionServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<Transaction>>retrieve(TransactionRetrieveParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<TransactionListPageAsync>>list()Returns a raw HTTP response for get /transactions, but is otherwise the same as TransactionServiceAsync.list.abstract CompletableFuture<HttpResponseFor<TransactionListPageAsync>>list(TransactionListParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<TransactionListPageAsync>>list(TransactionListParams params)CompletableFuture<HttpResponseFor<TransactionListPageAsync>>list(RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<Transaction>> retrieve(TransactionRetrieveParams params)
Returns a raw HTTP response for
get /transactions/{transaction_id}, but is otherwise the same as TransactionServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Transaction>> retrieve(TransactionRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<TransactionListPageAsync>> list()
Returns a raw HTTP response for
get /transactions, but is otherwise the same as TransactionServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<TransactionListPageAsync>> list(TransactionListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<TransactionListPageAsync>> list(TransactionListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<TransactionListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-