Interface WithdrawalRequestServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface WithdrawalRequestServiceAsync.WithRawResponseA view of WithdrawalRequestServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract WithdrawalRequestServiceAsync.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<WithdrawalRequest>> create(String accountId, WithdrawalRequestCreateParams params)
Returns a raw HTTP response for
post /api/v2/accounts/{account_id}/withdrawal_requests, but is otherwise the same as WithdrawalRequestServiceAsync.create.
-
create
CompletableFuture<HttpResponseFor<WithdrawalRequest>> create(String accountId, WithdrawalRequestCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<HttpResponseFor<WithdrawalRequest>> create(WithdrawalRequestCreateParams params)
-
create
abstract CompletableFuture<HttpResponseFor<WithdrawalRequest>> create(WithdrawalRequestCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<WithdrawalRequest>> retrieve(String withdrawalRequestId, WithdrawalRequestRetrieveParams params)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/withdrawal_requests/{withdrawal_request_id}, but is otherwise the same as WithdrawalRequestServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<WithdrawalRequest>> retrieve(String withdrawalRequestId, WithdrawalRequestRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<WithdrawalRequest>> retrieve(WithdrawalRequestRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<WithdrawalRequest>> retrieve(WithdrawalRequestRetrieveParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<WithdrawalRequest>>> list(String accountId)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/withdrawal_requests, but is otherwise the same as WithdrawalRequestServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<List<WithdrawalRequest>>> list(String accountId, WithdrawalRequestListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<WithdrawalRequest>>> list(String accountId, WithdrawalRequestListParams params)
-
list
abstract CompletableFuture<HttpResponseFor<List<WithdrawalRequest>>> list(WithdrawalRequestListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<WithdrawalRequest>>> list(WithdrawalRequestListParams params)
-
list
CompletableFuture<HttpResponseFor<List<WithdrawalRequest>>> list(String accountId, RequestOptions requestOptions)
-
-
-
-