Interface WireTransferServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface WireTransferServiceAsync.WithRawResponseA view of WireTransferServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract WireTransferServiceAsync.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<WireTransfer>> create(WireTransferCreateParams params)
Returns a raw HTTP response for
post /wire_transfers, but is otherwise the same as WireTransferServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<WireTransfer>> create(WireTransferCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<WireTransfer>> retrieve(String wireTransferId)
Returns a raw HTTP response for
get /wire_transfers/{wire_transfer_id}, but is otherwise the same as WireTransferServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<WireTransfer>> retrieve(String wireTransferId, WireTransferRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<WireTransfer>> retrieve(String wireTransferId, WireTransferRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<WireTransfer>> retrieve(WireTransferRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<WireTransfer>> retrieve(WireTransferRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<WireTransfer>> retrieve(String wireTransferId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<WireTransferListPageAsync>> list()
Returns a raw HTTP response for
get /wire_transfers, but is otherwise the same as WireTransferServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<WireTransferListPageAsync>> list(WireTransferListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<WireTransferListPageAsync>> list(WireTransferListParams params)
-
list
CompletableFuture<HttpResponseFor<WireTransferListPageAsync>> list(RequestOptions requestOptions)
-
approve
CompletableFuture<HttpResponseFor<WireTransfer>> approve(String wireTransferId)
Returns a raw HTTP response for
post /wire_transfers/{wire_transfer_id}/approve, but is otherwise the same as WireTransferServiceAsync.approve.
-
approve
CompletableFuture<HttpResponseFor<WireTransfer>> approve(String wireTransferId, WireTransferApproveParams params, RequestOptions requestOptions)
-
approve
CompletableFuture<HttpResponseFor<WireTransfer>> approve(String wireTransferId, WireTransferApproveParams params)
-
approve
abstract CompletableFuture<HttpResponseFor<WireTransfer>> approve(WireTransferApproveParams params, RequestOptions requestOptions)
-
approve
CompletableFuture<HttpResponseFor<WireTransfer>> approve(WireTransferApproveParams params)
-
approve
CompletableFuture<HttpResponseFor<WireTransfer>> approve(String wireTransferId, RequestOptions requestOptions)
-
cancel
CompletableFuture<HttpResponseFor<WireTransfer>> cancel(String wireTransferId)
Returns a raw HTTP response for
post /wire_transfers/{wire_transfer_id}/cancel, but is otherwise the same as WireTransferServiceAsync.cancel.
-
cancel
CompletableFuture<HttpResponseFor<WireTransfer>> cancel(String wireTransferId, WireTransferCancelParams params, RequestOptions requestOptions)
-
cancel
CompletableFuture<HttpResponseFor<WireTransfer>> cancel(String wireTransferId, WireTransferCancelParams params)
-
cancel
abstract CompletableFuture<HttpResponseFor<WireTransfer>> cancel(WireTransferCancelParams params, RequestOptions requestOptions)
-
cancel
CompletableFuture<HttpResponseFor<WireTransfer>> cancel(WireTransferCancelParams params)
-
cancel
CompletableFuture<HttpResponseFor<WireTransfer>> cancel(String wireTransferId, RequestOptions requestOptions)
-
-
-
-