Interface WalletServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface WalletServiceAsync.WithRawResponseA view of WalletServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract WalletServiceAsync.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. abstract ExternalServiceAsync.WithRawResponseexternal()CompletableFuture<HttpResponseFor<Wallet>>get(String accountId)Returns a raw HTTP response for get /api/v2/accounts/{account_id}/wallet, but is otherwise the same as WalletServiceAsync.get.CompletableFuture<HttpResponseFor<Wallet>>get(String accountId, WalletGetParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<Wallet>>get(String accountId, WalletGetParams params)abstract CompletableFuture<HttpResponseFor<Wallet>>get(WalletGetParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<Wallet>>get(WalletGetParams params)CompletableFuture<HttpResponseFor<Wallet>>get(String accountId, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract WalletServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
external
abstract ExternalServiceAsync.WithRawResponse external()
-
get
CompletableFuture<HttpResponseFor<Wallet>> get(String accountId)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/wallet, but is otherwise the same as WalletServiceAsync.get.
-
get
CompletableFuture<HttpResponseFor<Wallet>> get(String accountId, WalletGetParams params, RequestOptions requestOptions)
-
get
CompletableFuture<HttpResponseFor<Wallet>> get(String accountId, WalletGetParams params)
-
get
abstract CompletableFuture<HttpResponseFor<Wallet>> get(WalletGetParams params, RequestOptions requestOptions)
-
get
CompletableFuture<HttpResponseFor<Wallet>> get(WalletGetParams params)
-
get
CompletableFuture<HttpResponseFor<Wallet>> get(String accountId, RequestOptions requestOptions)
-
-
-
-