Interface WithdrawalServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface WithdrawalServiceAsync.WithRawResponseA view of WithdrawalServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract WithdrawalServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<HttpResponseFor<Withdrawal>> retrieve(String withdrawalId, WithdrawalRetrieveParams params)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/withdrawals/{withdrawal_id}, but is otherwise the same as WithdrawalServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<Withdrawal>> retrieve(String withdrawalId, WithdrawalRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Withdrawal>> retrieve(WithdrawalRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<Withdrawal>> retrieve(WithdrawalRetrieveParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<Withdrawal>>> list(String accountId)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/withdrawals, but is otherwise the same as WithdrawalServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<List<Withdrawal>>> list(String accountId, WithdrawalListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<Withdrawal>>> list(String accountId, WithdrawalListParams params)
-
list
abstract CompletableFuture<HttpResponseFor<List<Withdrawal>>> list(WithdrawalListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<Withdrawal>>> list(WithdrawalListParams params)
-
list
CompletableFuture<HttpResponseFor<List<Withdrawal>>> list(String accountId, RequestOptions requestOptions)
-
-
-
-