Interface PendingTransactionServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface PendingTransactionServiceAsync.WithRawResponseA view of PendingTransactionServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract PendingTransactionServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<HttpResponseFor<PendingTransaction>> create(PendingTransactionCreateParams params)
Returns a raw HTTP response for
post /pending_transactions, but is otherwise the same as PendingTransactionServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<PendingTransaction>> create(PendingTransactionCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<PendingTransaction>> retrieve(String pendingTransactionId)
Returns a raw HTTP response for
get /pending_transactions/{pending_transaction_id}, but is otherwise the same as PendingTransactionServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<PendingTransaction>> retrieve(String pendingTransactionId, PendingTransactionRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<PendingTransaction>> retrieve(String pendingTransactionId, PendingTransactionRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<PendingTransaction>> retrieve(PendingTransactionRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<PendingTransaction>> retrieve(PendingTransactionRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<PendingTransaction>> retrieve(String pendingTransactionId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<PendingTransactionListPageAsync>> list()
Returns a raw HTTP response for
get /pending_transactions, but is otherwise the same as PendingTransactionServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<PendingTransactionListPageAsync>> list(PendingTransactionListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<PendingTransactionListPageAsync>> list(PendingTransactionListParams params)
-
list
CompletableFuture<HttpResponseFor<PendingTransactionListPageAsync>> list(RequestOptions requestOptions)
-
release
CompletableFuture<HttpResponseFor<PendingTransaction>> release(String pendingTransactionId)
Returns a raw HTTP response for
post /pending_transactions/{pending_transaction_id}/release, but is otherwise the same as PendingTransactionServiceAsync.release.
-
release
CompletableFuture<HttpResponseFor<PendingTransaction>> release(String pendingTransactionId, PendingTransactionReleaseParams params, RequestOptions requestOptions)
-
release
CompletableFuture<HttpResponseFor<PendingTransaction>> release(String pendingTransactionId, PendingTransactionReleaseParams params)
-
release
abstract CompletableFuture<HttpResponseFor<PendingTransaction>> release(PendingTransactionReleaseParams params, RequestOptions requestOptions)
-
release
CompletableFuture<HttpResponseFor<PendingTransaction>> release(PendingTransactionReleaseParams params)
-
release
CompletableFuture<HttpResponseFor<PendingTransaction>> release(String pendingTransactionId, RequestOptions requestOptions)
-
-
-
-