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